新生求助:SQL怎样删除之前查询过的行,就是查询一条记录删除一条记录。

2025-04-04 05:10:16
推荐回答(3个)
回答1:


---建立测试表
create table s_test
(
id int identity(1,1),
name varchar(20)
)
--随机生成20条数据
insert into s_test (name )  select RIGHT('000000'+ convert(varchar(20),cast(floor(rand()*1000000) as int)),6)
go 20


--建立辅助表
create table s_ls
(id_ls int identity(1,1),
id int,
name varchar(20)
)

--随机读取一条记录,将记录保存到辅助表
insert into s_ls (id,name ) 
select top (1) *  from s_test 
order by NEWID ()

---查看刚才读取的数据(最后一次的数据)
select * from s_ls where id_ls  =(select MAX(id_ls ) from s_ls )

--在测试表中将该记录删除
delete from s_test where id in (select id from s_ls )

--查看测试表是否删除记录
select * from s_test

回答2:

查询的时候,你将num保存下来嘛, 删除的时候使用保存的这个值来删

回答3:

将=改成in试试