2007-06-07

davidcook: (circuit)
2007-06-07 11:33 am

SQL geekery ...

So, what does the following bit of SQL do ?

with temp (num)
as (select 5 from sysibm.sysdummy1
union all
select num + 1
from temp
where num < 37)
select * from temp


Answer here ... )