On Wed, Oct 15, 2008 at 12:32 PM, Scott Marlowe <scott.marlowe@xxxxxxxxx> wrote: > Can't you put the query into a subselect with an offset 0 and join to > that to get the generate_series to work correctly? I've never heard of doing it that way, but I'm very interestes in seeing how it is done. This is what i've tried so far, but am still getting the cross join: postgres=# select * from generate_series(1,3) CROSS JOIN ( values('a'),('b'),('c') ) as myvals( letter ) OFFSET 0; generate_series | letter -----------------+-------- 1 | a 2 | a 3 | a 1 | b 2 | b 3 | b 1 | c 2 | c 3 | c (9 rows) -- Regards, Richard Broersma Jr. Visit the Los Angeles PostgreSQL Users Group (LAPUG) http://pugs.postgresql.org/lapug -- Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general