Mysql表處理常用命令

2021-10-23 23:07:59 字數 1183 閱讀 9619

表中沒有主鍵列使用(自增主鍵)(更改主鍵操作)

alter table 表名字 add id int not null primary key auto_increment 

在原有**中有主鍵,想修改其它列為主鍵,則需要先刪除原來的主鍵,然後再修改其他列為主鍵:

alter table 表名字 drop primary key;(刪除主鍵)

alter table 表名字 add primary key(id);(設定主鍵

(修改表名)

alter table (表名字) rename(新錶名);
(改變欄位名)

alter table (表名字) change(舊欄位)(新字段)(新資料型別);
(修改字段資料型別)

alter table 表名 modify column 欄位名 資料型別
(新增字段)

alter table (表名字)add(欄位名字)(資料型別)
(為已有字段設定預設值)

alter table (表名字) alter column (欄位名字) set default 「?」;
(為所有字段賦值)

insert into (表名字)(欄位名1,欄位名2)values(值1,值2)
(更新資料)

update (表名字) set (字段)=(資料值) where id=(?);
刪除資料

delete from (表名字) where id=?;
新增資料

insert into 表名字(字段)values(值);

欄位名字-not null---(設定欄位不為空)

(為已有字段新增自增長)

alter table (表名字) modify   id 資料型別 unsigned auto_increment;
設定編碼utf8

alter table (表名字) default character set utf8;

MySQL 表 常用命令 MYSQL常用命令行表

mysql常用命令行表 1 系統管理 mysql h主機位址 u使用者名稱 p 連線mysql 在mysql bin exit 退出mysql命令 mysqladmin u使用者名稱 p舊密碼 password新密碼 修改密碼 在mysql bin grantselect insert update...

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...