一、資料庫的增、刪、改
建立資料庫:create database 庫名; 或者加入字符集和排序規則 create database t_aouto default charset utf8 collate utf8_general_ci;修改資料庫字符集:alter database t_aouto default charset utf8 collate utf8_general_ci;刪除資料庫:drop database 庫名;檢視資料庫:show databases;使用資料庫:use 庫名;二、建立表
建立表語句:create table 表名(欄位名1 欄位型別 欄位約束,欄位2 欄位型別 欄位約束...);建立與現有表一樣欄位的新表:create table 表名 like 已有表名;將查詢結果建立新表:create table 表名 select * from 現有表 where 條件;常用欄位型別 :int()、bigint()、char()、varchar()、date、datetime()、text等等常用欄位約束:not null、default 0、auto_increment、primary key對資料表重新命名:alter table 表名 rename 新表名;增加欄位:alter table 表名 add 欄位名 欄位型別 欄位約束; (PS:可用first/after函式調整欄位位置)刪除欄位:alter table 表名 drop 欄位名;修改欄位型別及約束:alter table 表名 modify 欄位名 新型別 新約束;(PS:如不加新約束,會將建表時的約束清空,主鍵、外來鍵、唯一約束除外)修改欄位名稱:alter table 表名 change 欄位名 新欄位名 新欄位型別 新約束條件;修改資料庫引擎:alter table 表名 engine=;(PS:主要有InnoDB和MyISAM,InnoDB 經常修改表資料速度快些,MyISAM 經常查詢錶速度快些)增加主鍵:alter table 表名 add primary key(欄位名);刪除主鍵:alter table 表名 drop primary key;增加外來鍵:alter table 表名 add constraint 外來鍵名 foreign kek(欄位名) references 主表(主鍵);刪除外來鍵:alter table 表名 drop foreign key 外來鍵名;刪除唯一約束:alter table 表名 drop index 欄位名;五、插入資料
向表指定欄位插入多條資料:insert into 表名(欄位1,欄位2...) values(資料1,資料2...),(資料1,資料2...),(資料1,資料2...),(資料1,資料2...);將查詢結果插入表:insert into 表名 select 欄位名 from 表名 where 條件;載入外部資料到表:Load data local infile ‘資料路徑’Into table 表名 Fields terminated by ‘分隔符’ Ignored 1 lines;六、更新表資料、刪除表資料(注意只刪除資料,並不刪除表本身)
更改滿足條件的欄位資料:update 表名 set 欄位1=值1,欄位2=值2... where 條件;刪除滿足條件的資料:delele from 表名 where 條件;刪除所有資料:方式一:delete from 表名; 方式二:truncate table 表名;方式一會逐條進行刪除,速度較慢,方式二直接刪除,速度快;另外對自增欄位,方式一不能重置自增欄位的初始位置,方式二可以重置自增欄位的初始位置;本篇文章參考部落格園的文章,如有侵權,請聯絡本人。
文章原文地址【https://www.cnblogs.com/zhangmingda/p/12711745.html】