You are viewing a single comment's thread. Return to all comments →
with recursive tmp as ( select 1 as num union all select num + 1 from tmp limit 20) select repeat('* ', num) from tmp;
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 2
You are viewing a single comment's thread. Return to all comments →
with recursive tmp as ( select 1 as num union all select num + 1 from tmp limit 20) select repeat('* ', num) from tmp;