日期:2014-05-18 浏览次数:20731 次
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 行)
*/