• + 0 comments
    with recursive tmp as (
    	select 1 as num
        union all
        select num + 1
        from tmp
        limit 20)
    select repeat('* ', num)
    from tmp;