1 插入資料insert
1. 插入完整資料(順序插入)
語法一:
insert into 表名(欄位1,欄位2,欄位3…欄位n) values(值1,值2,值3…值n);
語法二:
insert into 表名 values (值1,值2,值3…值n);
2. 指定字段插入資料
語法:insert into 表名(欄位1,欄位2,欄位3…) values (值1,值2,值3…);
3. 插入多條記錄
語法:insert into 表名 values
(值1,值2,值3…值n),
(值1,值2,值3…值n),
(值1,值2,值3…值n);
4. 插入查詢結果
語法:insert into 表名(欄位1,欄位2,欄位3…欄位n)
select (欄位1,欄位2,欄位3…欄位n) from 表2
where …;
2 更新資料update
語法:update 表名 set
欄位1=值1,
欄位2=值2,
where condition;
示例:update mysql.user set password=password(『123』)
where user=』root』 and host=』localhost』;
3 刪除資料delete
語法:delete from 表名
where conition;
示例:delete from mysql.user
where password=』』;
mysql 層刪改 MySQL資料的增刪改
資料操作語言 dml 是對錶中記錄進行新增 insert 更新 update 刪除 delete 等操作。新增資料 向表中新增資料時,欄位名與字段值的資料型別 個數 順序必須一一對應。語法 insert into values 省略欄位名,則預設依次插入所有字段。批量新增多個表或多個值之間使用逗號分...
Mysql資料增刪改查
建立資料庫表 haha 並寫入字段 create table haha user name varchar 32 age int,sin date date 向字段寫入資料 insert into xx value xixi 12 2016 12 12 insert into xx values w...
mysql資料增刪改查
資料表的建立請看鏈結 1.增加 insert 全列插入在實際開發使用較少,如果表結構發生變化,全列插入就會報錯 insert into 表名 values 值1,值2 全列插入 insert into students values 1,小明 18,男 218 指定列插入 insert into 表...