34,837
社区成员




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 行)
*/