8 lines
182 B
Text
8 lines
182 B
Text
with recursive cte as (
|
|
select 2 as i
|
|
union all
|
|
select i+2 -- increment by 2
|
|
from cte
|
|
where i < 8)
|
|
select format('whom do we appreciate? {:d}', i)
|
|
from cte;
|