1create table #dblib0016 (f1 int not null, f2 text, f3 varchar(20) )
2go
3select * from #dblib0016 where 0=1
4go
5select * from #dblib0016 where 0=1
6go
7drop table #dblib0016
8go
9
10