• + 0 comments

    WITH RECURSIVE Patterns(n) as( Select cast('' as char(255)) UNION ALL Select concat(n, '') from Patterns where length(n) < 20
    ) select * from Patterns ORDER BY length(n) DESC; Please Whats wrong with my code. It prints out the *.