欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 汽车 > 时评 > 数据库6(数据库指令)

数据库6(数据库指令)

2025/4/3 8:00:55 来源:https://blog.csdn.net/songguiren/article/details/146966409  浏览:    关键词:数据库6(数据库指令)

之前所学的指令均为查找指令,即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

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

热搜词