On 4/2/06, Alexander Kozlovsky <[EMAIL PROTECTED]> wrote: > Put my initial question another way, I think this is correct SQL: > > select ( > select a > from (select a > from (select a > from (select a > from (select a > from (select b as a) as T1 > ) as T2 > ) as T3 > ) as T4 > ) as T5 > ) as column_1 > from (select 1 as b) as T0 > > It is certainly weird, but it is correct. But SQLite > generate error
What is it supposed to produce? It looks like a cartesian outer product that will produce so many rows your database crashes. Is this one of those obfuscated code contest entries?