union and LIMIT problem - Mailing list pgsql-hackers

From Oleg Bartunov
Subject union and LIMIT problem
Date
Msg-id Pine.GSO.3.96.SK.991006230035.4801e-100000@ra
Whole thread Raw
Responses Re: [HACKERS] union and LIMIT problem  (Bruce Momjian <maillist@candle.pha.pa.us>)
Re: [HACKERS] union and LIMIT problem  (Bruce Momjian <pgman@candle.pha.pa.us>)
List pgsql-hackers
Does anybody know how to use UNION and LIMIT together ?
I want to get 10 rows from publications and 10 rows 
from keys.

select msg_id from publications limit 10 union
select key_id from keys         limit 10 
produces 
ERROR:  parser: parse error at or near "union

select msg_id from publications union 
select key_id from keys         limit 10
produces something I wasn't expected

Regards,
    Oleg

_____________________________________________________________
Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
Sternberg Astronomical Institute, Moscow University (Russia)
Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/
phone: +007(095)939-16-83, +007(095)939-23-83



pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] psql and comments
Next
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] union and LIMIT problem