34,875
社区成员
发帖
与我相关
我的任务
分享create table tb(tb# int , val int)
insert into tb values(1,1)
insert into tb values(1,1)
insert into tb values(1,1)
insert into tb values(1,1)
insert into tb values(1,1)
go
select * from tb
drop table tb
/*
tb# val
----------- -----------
1 1
1 1
1 1
1 1
1 1
(所影响的行数为 5 行)
*/