五月综合激情婷婷六月,日韩欧美国产一区不卡,他扒开我内裤强吻我下面视频 ,无套内射无矿码免费看黄,天天躁,日日躁,狠狠躁

新聞動(dòng)態(tài)

Linux操作系統(tǒng)操作MySQL常用命令小結(jié)

發(fā)布日期:2022-04-07 10:59 | 文章來源:gibhub

下面給大家分享mysql常用命令,

 -- 啟動(dòng)數(shù)據(jù)庫(kù)
service myslqd start;
-- 進(jìn)入MySQL -u root -p/mysql -h localhost -u root -p DatabaseName;
-- 列出數(shù)據(jù)庫(kù)
show database;
-- 創(chuàng)建數(shù)據(jù)庫(kù)
create database XXXX;
-- 選擇數(shù)據(jù)庫(kù)
use DatabaseName;
-- 羅列表
show table;
-- 顯示表格的屬性
show columns from tablename;
-- 建立數(shù)據(jù)庫(kù)
source filename.txt;
-- 增加一個(gè)字段
alter table tablename add column filename datatype;
-- 增加多個(gè)字段
alter table tablename add column filename1 datatype,add column filename2 datatype;
-- 新增一個(gè)用戶
grant all On *.* to user@localhost identity by "password";
-- 查詢時(shí)間
select now();
-- 查詢用戶
select user();
-- 查詢數(shù)據(jù)庫(kù)版本
select version();
-- 查詢當(dāng)前使用的數(shù)據(jù)庫(kù)
select database();
-- 刪除student_course數(shù)據(jù)庫(kù)中的student數(shù)據(jù)便
rm -f student_cource/student.*
-- 備份數(shù)據(jù)庫(kù)(備份數(shù)據(jù)庫(kù)Apple1)
MySQLdump -u root -p Apple1>C:\Apple1.txt
-- 備份表(將數(shù)據(jù)庫(kù)Apple1中的mytable表備份)
MySQLdump -u root -p mytable>C:\Apple.txt
-- 創(chuàng)建臨時(shí)表(mytable)
create temporary table mytable(id int,address varchar(20),name varchar(20));
-- 創(chuàng)建表前先判斷系統(tǒng)是否存在這個(gè)表
create table if not exists mytable(......);
-- 從已有的table1表中復(fù)制表結(jié)構(gòu)到table2
create table table2 select * from table1 where 1<>1;
-- 復(fù)制表
create table table2 select * from table1;
-- 重命名表名
alter table table1 rename as table2;
-- 修改列的數(shù)據(jù)類型
alter table table1 modify ID int unsigned;--把列ID的類型修改為int unsigned
alter table table1 change ID SID int unsigned; --把列ID改名為 SID且類型改為int unsigned
-- 創(chuàng)建索引
alter table table1 add index Ind_id (ID);
create index ind_ID on tablename (ID);
create unique index ind_id on tablename(ID);
-- 刪除索引
drop index ind_id On table1;
alter table table1 drop index ind_ID;
-- 聯(lián)合查詢字符與多個(gè)列連接‘
select concat(ID,':',name,'=') from table1
-----------------------第二片------------------------------------
--顯示數(shù)據(jù)庫(kù)
show database;
--顯示數(shù)據(jù)庫(kù)中的表
show tables;
--顯示數(shù)據(jù)表結(jié)構(gòu)
describe tablename;
--顯示表記錄
select * from tablename;
--查詢能操作MySQL的用戶
select * from user;
--創(chuàng)建數(shù)據(jù)庫(kù)
create database databasename
--例如↓
MySQL> create database AA;
---創(chuàng)建表
user AA;
mysql> create table table1(ID int auto_increment not null primary key,name char(6),sex char(6),birthday date)
 ---插入幾條記錄
 MySQL> insert into AA values('','張三','男','1971-10-01');
 MySQL> insert into AA values('','劉佳佳','女','1978-10-01');
 --驗(yàn)證結(jié)果
 MySQL> select * from AA;
--修改張三的生日為1971-01-10
MySQL> update AA set birthday = '1971-01-10' where ID = '1'; 
--刪除記錄
MySQL> delete from AA where ID = '1';
--刪除表以及庫(kù)
mysql> drop table tablename;
MySQL> drop database databasename;
--新增萬能用戶
-- 格式:grant select On database.* to username@localhost identity by 'password'
用戶名user_1 密碼是123456
--可以自任何PC上登錄這個(gè)用戶對(duì)數(shù)據(jù)庫(kù)為所欲為
MySQL> grant select,insert update,delete on *.* to user_1@"%" identity by "123456";
--創(chuàng)建只有在本機(jī)才能操作數(shù)據(jù)庫(kù)的用戶
用戶名user_2 密碼是123456
MySQL> grant select,insert update,delete on *.* to user_2@localhost identity by "123456";
--登錄數(shù)據(jù)庫(kù)庫(kù)
MySQL> -u user_1 -p -h IP地址;

以上所述是小編給大家介紹的Linux操作系統(tǒng)操作MySQL常用命令小結(jié),希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)本站網(wǎng)站的支持!

國(guó)外服務(wù)器租用

版權(quán)聲明:本站文章來源標(biāo)注為YINGSOO的內(nèi)容版權(quán)均為本站所有,歡迎引用、轉(zhuǎn)載,請(qǐng)保持原文完整并注明來源及原文鏈接。禁止復(fù)制或仿造本網(wǎng)站,禁止在非maisonbaluchon.cn所屬的服務(wù)器上建立鏡像,否則將依法追究法律責(zé)任。本站部分內(nèi)容來源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來,僅供學(xué)習(xí)參考,不代表本站立場(chǎng),如有內(nèi)容涉嫌侵權(quán),請(qǐng)聯(lián)系alex-e#qq.com處理。

相關(guān)文章

實(shí)時(shí)開通

自選配置、實(shí)時(shí)開通

免備案

全球線路精選!

全天候客戶服務(wù)

7x24全年不間斷在線

專屬顧問服務(wù)

1對(duì)1客戶咨詢顧問

在線
客服

在線客服:7*24小時(shí)在線

客服
熱線

400-630-3752
7*24小時(shí)客服服務(wù)熱線

關(guān)注
微信

關(guān)注官方微信
頂部