Name: Anonymous 2008-04-25 14:49
Create a program that gives this as its output: http://pastebin.ca/997618
select a || b || b || a from (select 'A' as a UNION select 'B' UNION select 'C' UNION select 'D' UNION select 'E' UNION select 'F' UNION select 'G' UNION select 'H' UNION select 'I' UNION select 'J' UNION select 'K' UNION select 'L' UNION select 'M' UNION select 'N' UNION select 'O' UNION select 'P' UNION select 'Q' UNION select 'R' UNION select 'S' UNION select 'T' UNION select 'U' UNION select 'V' UNION select 'W' UNION select 'X' UNION select 'Y' UNION select 'Z'), (select 'A' as b UNION select 'E' UNION select 'I' UNION select 'O' UNION select 'U');