之前所学的指令均为查找指令,即select相关语句
接下来的语句是增删改查的其他三部分,即增删改
1.删除
删除操作是三个操作中较为简单的,因为它只需要考虑数据的完整性
在实验时可以用表的复件来操作,防止操作不当导致数据库被破坏
删除整表
--复制一个sales表
select *
into sale1
from sales
--查看复制表是否成功,slae1表有sales表所有数据
select *
from sale1
--清空sale1表,sale1表还存在,但是里面没有数据
delete sale1
删除部分数据
例1:
--复制sales表
select *
into sale2
from sales
--删除符合特定条件的数据
delete sale2
where title_id='BU1111'
例2:
--复制sales表
select *
into sale3
from sales
--删除符合特定条件的数据
我们可以先写筛选这些数据的select语句,然后将select语句替换为delete语句即可
select *
from titles
inner join sale3 on (titles.title_id=sale3.title_id)
where titles.title like '%computer%'
delete sale3
from titles
inner join sale3 on (titles.title_id=sale3.title_id)
where titles.title like '%computer%'
--在MySQL或者SQL Server等应用中可以设置删除的级联,设置后应用可以自动删去相关子表数据,帮助管理数据库
2.插入
单条插入
例1:
--查看sales表
select * from sales
--在sales表中插入一条记录
--插入时先查看一条记录,需要哪些参数及其类型,
是否有默认值,是否为空,如果有默认值或者可以为空,那么设置参数时可以不设置,否则就必须要设置参数,
参数是否可重复等等
insert into sales
values('6380','1111','2025-4-2',10,'Net 30','BU1032')
--这一条插入指令传入了sales表一条记录需要的所有参数
例2:
--查看authors表
select * from authors
--插入一条记录,这个插入语句只传入了authors表一条记录的部分参数,其他可为空或有默认值的可以不传
--如果只传部分参数,要指明传的参数对应顺序
insert into authors
(au_id,au_lname,au_fname,contract)
values('111-11-2221','yin','df',1)
插入多条
例1:
--先创建一个空表
select *
into authors1
from authors
delete authors1
--选择符合条件的对象插入
insert into authors1
select * from authors
where state='CA'
--查看是否插入成功
select * from authors1
例2:
--拼装,可以将两个需要参数相似,记录不同的表拼接在一起
--把employee表的数据传到authors1表里
insert into authors1
(au_id,au_lname,au_fname,phone,contract)
select emp_id,fname,lname,'123','1'
from employee
--查看是否成功
select * from authors1
3.更新
单表修改
例1:
--查看titles表
select * from titles
--更新titles表的price列,如果没有where语句,表明使所有price数值均+10
--有where语句,则筛选所有type为business的对象,price+10
update titles
SET price = price+10
where type='business'
例2:
--修改publishers表,将所有coutry列为USA的对象改为CHA
update publishers
SET country='CHA'
where country='USA'
--查看是否成功
select * from publishers
多表修改
--也可以看作用update语句替换原来的select语句
update titles
SET price = price+10
from titles inner join publishers
on (titles.pub_id=publishers.pub_id)
where publishers.pub_name='New Moon Books'
--practice
update publishers
SET country='CHA'
where country='USA'
select * from publishers