Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: The T-SQL Quiz

    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

    begin

    Select @x, 'BizzBuzz'

    goto final

    end

    if (@x%3) = 0

    begin

    Select @x, 'Bizz'

    goto final

    end

    if...

Viewing post 1 (of 1 total)