MySQL常用命令

2021-07-14 09:28:23 字數 2520 閱讀 6845

登入(使用者名為root,密碼為空):

mysql -u root

檢視使用者:

select user();

檢視許可權:

show grants;

檢視全部資料庫(名字):

show databases;

新建資料庫:

create database t1 character set utf8;

檢視資料庫編碼格式:

show create database t1;

修改資料庫編碼方式:

alter database t1 character set gbk;

刪除資料庫:

drop database t1;

指定使用某資料庫(例如t1):

use t1;

檢視指定使用資料庫的名字:

select database();

建立資料表:

create table tb1(欄位名 資料型別,欄位名 資料型別);

檢視資料庫中有哪些表(不顯示結構,只有表的名字):

show tables;

檢視某張表的結構(例如tb1):

show columns from tb1;

檢視資料庫儲存引擎:

show engines;

檢視資料表的(內部)建立語句(例如provinces):

show create table provinces;

新增外來鍵約束:

foreign key (pid) references provinces (id) on delete cascade,(結束時一般是逗號,若在最後一行則不用逗號)

該錶的pid列參照provinces表的id列,約束操作為on delete cascade

檢視表中索引(例如users1):

show indexes from users1\g;

刪除表中資料:

delete from provinces where id = 3;

新增單列:

alter table 表名 add 列定義 位置(after … / first);

刪除單列:

alter table 表名 drop 列名1,drop 列名2;

新增主鍵約束:

alter table 表名 add constraint 約束名 primary key (列名);

新增唯一約束:

alter table 表名 add unique (列名);

新增外來鍵約束:

alter table 表名 add foreign key (外來鍵列) references 表名 (參照列);

新增預設約束:

alter table 表名 alter 列名 set default 預設值;

刪除預設約束:

alter table 表名 alter 列名 drop default;

刪除主鍵約束:

alter table 表名 drop primary key;

注意:刪除主鍵約束後原本的唯一約束會變成主鍵約束

刪除唯一約束:

注意:唯一約束本身是乙個索引,因此可以通過刪除索引來刪除唯一約束

alter table 表名 drop index 唯一約束索引名(key_name);

刪除外來鍵約束:

alter table 表名 drop foreign key 外鍵名(系統賦予,constraint);

刪除外來鍵索引:

alter table 表名 drop index 索引名(key_name);

修改列定義:

alter table 表名 modify 列名 列定義 位置;

修改列名稱(與列定義):

alter table 表名 change 列名 新列名 列定義 位置;

修改資料表名字:

alter table 表名 rename 新錶名;

資料記錄增刪改查:

mysql基本常用命令 MySQL常用命令(一)

cmd提示框中的mysql基礎命令 一 命令 連線mysql伺服器 mysql h localhost u root p 展示所有資料庫 show databases 選擇資料庫 use database 展示所選資料下所有表 show tables 設定資料庫編碼 set names gbk 用s...

mysql巡檢常用命令 mysql 常用命令

客戶端連線 進入命令列,windows cmd,連線 mysql u 使用者名稱 p密碼 h 伺服器ip位址 p 伺服器端mysql埠號 d 資料庫名 注意 1 伺服器端口標誌 p一定要大些以區別於使用者 p,如果直接連線資料庫標誌 d也要大寫 2 如果要直接輸入密碼 p後面不能留有空格如 pmyp...

mysql常用命令總結 mySql常用命令總結

總結一下自己常用的mysql資料庫的常用命令 mysql u root p 進入mysql bin目錄後執行,回車後輸入密碼連線。資料庫操作 1 create database dbname 建立資料庫,資料庫名為dbname 2 create database todo default chara...