This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select | |
-- logic untuk fizzbuzz | |
case | |
when baris %15 = 0 then 'FizzBuzz' | |
when baris %3 = 0 then 'Fizz' | |
when baris %5 = 0 then 'Buzz' | |
else baris end fizzbuzz | |
from ( | |
-- generate 100 baris row dan beri nomor | |
select @no := @no+1 baris |