I need to get a result set containing the first N positive integers. Is it possible to use only standard SQL SELECT statement to get them (without any count table provided)?
Weird solution, but...
SELECT 1 UNION SELECT 2 UNION SELECT 3....