Viewing post 1 (of 1 total)
hi,
came up with this code in 10 min
declare @x int
set @x = 1
while @x<=100
begin
If (@x%3) = 0 and (@x%5)= 0
Select @x, 'BizzBuzz'
goto final
end
if (@x%3) = 0
Select @x, 'Bizz'
if...
May 28, 2007 at 4:56 pm
#709235