---建立测试表
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
查询的时候,你将num保存下来嘛, 删除的时候使用保存的这个值来删
将=改成in试试