#dml語言
/*資料操作語言:
插入:insert
修改:update
刪除:delete
#一、插入語句
#方式一:經典的插入
/*語法:
insert into 表名(列名,...) values(值1,...);
*/select * from beauty;
#1.插入的值的型別要與列的型別一致或相容
insert into beauty(id,name,***,borndate,phone,photo,boyfriend_id)
values(13,'唐藝昕','女','1990-4-23','1898888888',null,2);
#2.不可以為null的列必須插入值。可以為null的列如何插入值?
#方式一:
insert into beauty(id,name,***,borndate,phone,photo,boyfriend_id)
values(13,'唐藝昕','女','1990-4-23','1898888888',null,2);
#方式二:
insert into beauty(id,name,***,phone)
values(15,'娜扎','女','1388888888');
#3.列的順序是否可以調換
insert into beauty(name,***,id,phone)
values('蔣欣','女',16,'110');
#4.列數和值的個數必須一致
insert into beauty(name,***,id,phone)
values('關曉彤','女',17,'110');
#5.可以省略列名,預設所有列,而且列的順序和表中列的順序一致
insert into beauty
values(18,'張飛','男',null,'119',null,null);
#方式二:
/*語法:
insert into 表名
set 列名=值,列名=值,...
*/insert into beauty
set id=19,name='劉濤',phone='999';
#兩種方式大pk ★
#1、方式一支援插入多行,方式二不支援
insert into beauty
values(23,'唐藝昕1','女','1990-4-23','1898888888',null,2)
,(24,'唐藝昕2','女','1990-4-23','1898888888',null,2)
,(25,'唐藝昕3','女','1990-4-23','1898888888',null,2);
#2、方式一支援子查詢,方式二不支援
insert into beauty(id,name,phone)
select 26,'宋茜','11809866';
insert into beauty(id,name,phone)
select id,boyname,'1234567'
from boys where id<3;
#二、修改語句
1.修改單錶的記錄★
語法:update 表名
set 列=新值,列=新值,...
where 篩選條件;
2.修改多表的記錄【補充】
語法:sql92語法:
update 表1 別名,表2 別名
set 列=值,...
where 連線條件
and 篩選條件;
sql99語法:
update 表1 別名
inner|left|right join 表2 別名
on 連線條件
set 列=值,...
where 篩選條件;
*/#1.修改單錶的記錄
#案例1:修改beauty表中姓唐的女神的**為13899888899
update beauty set phone = '13899888899'
where name like '唐%';
#案例2:修改boys表中id好為2的名稱為張飛,魅力值 10
update boys set boyname='張飛',usercp=10
where id=2;
#2.修改多表的記錄
#案例 1:修改張無忌的女朋友的手機號為114
update boys bo
inner join beauty b on bo.`id`=b.`boyfriend_id`
set b.`phone`='119',bo.`usercp`=1000
where bo.`boyname`='張無忌';
#案例2:修改沒有男朋友的女神的男朋友編號都為2號
update boys bo
right join beauty b on bo.`id`=b.`boyfriend_id`
set b.`boyfriend_id`=2
where bo.`id` is null;
select * from boys;
#三、刪除語句
/*方式一:delete
語法:1、單錶的刪除【★】
delete from 表名 where 篩選條件
2、多表的刪除【補充】
sql92語法:
delete 表1的別名,表2的別名
from 表1 別名,表2 別名
where 連線條件
and 篩選條件;
sql99語法:
delete 表1的別名,表2的別名
from 表1 別名
inner|left|right join 表2 別名 on 連線條件
where 篩選條件;
方式二:truncate
語法:truncate table 表名;
#方式一:delete
#1.單錶的刪除
#案例:刪除手機號以9結尾的女神資訊
delete from beauty where phone like '%9';
select * from beauty;
#2.多表的刪除
#案例:刪除張無忌的女朋友的資訊
delete b
from beauty b
inner join boys bo on b.`boyfriend_id` = bo.`id`
where bo.`boyname`='張無忌';
#案例:刪除黃曉明的資訊以及他女朋友的資訊
delete b,bo
from beauty b
inner join boys bo on b.`boyfriend_id`=bo.`id`
where bo.`boyname`='黃曉明';
#方式二:truncate語句
#案例:將魅力值》100的男神資訊刪除
truncate table boys ;
#delete pk truncate【面試題★】
1.delete 可以加where 條件,truncate不能加
2.truncate刪除,效率高一丟丟
3.假如要刪除的表中有自增長列,
如果用delete刪除後,再插入資料,自增長列的值從斷點開始,
而truncate刪除後,再插入資料,自增長列的值從1開始。
4.truncate刪除沒有返回值,delete刪除有返回值
5.truncate刪除不能回滾,delete刪除可以回滾.
select * from boys;
delete from boys;
truncate table boys;
insert into boys (boyname,usercp)
values('張飛',100),('劉備',100),('關雲長',100);
資料庫修改表結構
修改資料表 alter table 表名sql 的書寫不考慮順序,但是批量執行 需要要考慮好先執行哪些,後執行哪些 在修改資料表結構時,必須要明確 修改的字段中是否存在資料,例如 如果需要更改乙個欄位的約束為非空約束,那麼首先要保證該字段中已有的資料沒有null值。因此在做程式之前資料庫分析,設計是...
資料庫 單錶約束
約束 對錶中的資料可以進行進一步的限制,來保證資料的唯一性,正確性和完整性。約束種類 primary key 主鍵約束 代表該字段的資料不能為空且不可重複 not null 非空 代表該字段的資料不能為空 unique 唯一 代表該字段的資料不能重複 乙個表中都得需要主鍵約束,用來標註一條記錄的唯一...
插入 刪除 修改表資料
1 插入表資料 insert low priority delayed high priority ignore into tbl name col name,values set col name on duplicate key update col name expr,tbl name 被操作...