RosettaCodeData/Task/FizzBuzz/SQL/fizzbuzz-6.sql

5 lines
149 B
MySQL
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
SELECT
isnull(if row_num % 3 = 0 then 'Fizz' endif + if row_num % 5 = 0 then 'Buzz' endif, str(row_num))
FROM
sa_rowgenerator(1,100)