Article ID: 116075
Article Last Modified on 3/25/2000
use pubs
go
drop table t1
go
create table t1(c1 int, c2 int, c3 int, c4 int)
go
declare @counter int
select @counter = 0
while @counter < 400
begin
insert t1 values(@counter,@counter,@counter,@counter)
select @counter = @counter + 1
end
go
select max(c4) from t1
go
Additional query words: 4.20 TRAP D Windows NT
Keywords: kbbug kbfix KB116075