posted by
davidcook at 11:33am on 07/06/2007
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
So, what does the following bit of SQL do ?
( Answer here ... )
with temp (num)
as (select 5 from sysibm.sysdummy1
union all
select num + 1
from temp
where num < 37)
select * from temp
( Answer here ... )