error with mor than 1 sub-select - Mailing list pgsql-sql

From chrisj
Subject error with mor than 1 sub-select
Date
Msg-id 5936948.post@talk.nabble.com
Whole thread Raw
Responses Re: error with mor than 1 sub-select  (Michael Fuhr <mike@fuhr.org>)
Re: error with mor than 1 sub-select  (Osvaldo Kussama <osvaldo_kussama@yahoo.com.br>)
List pgsql-sql
Hi,

I am fairly new to PostgreSQL but not to SQL.  Is this a bug or a
limitation...

The first query works fine, but when a second sub-query is added I get a
syntax error...

psql protocal2 -U p2user << EOF1   select *      from serv_res SR      where serv_key = 10        and not exists
   (select 1             from reservation R           )
 
--         and not exits 
--            (select 1 
--               from interval R1
--            )
order by 1
;   select *      from serv_res SR      where serv_key = 10        and not exists            (select 1
fromreservation R           )        and not exits           (select 1              from interval R1           )
 
order by 1
;

EOF1

The output is as follows:

Password for user p2user:serv_key | res_key | start_off_min | duration_min
----------+---------+---------------+--------------
(0 rows)

ERROR:  syntax error at or near "select" at character 192
LINE 9:             (select 1                    ^

Note:  This is not the actual query I want to run but just kept removing
complexity until the problem (multiple sub-selects) seemed obvious.
-- 
View this message in context: http://www.nabble.com/error-with-mor-than-1-sub-select-tf2149934.html#a5936948
Sent from the PostgreSQL - sql forum at Nabble.com.



pgsql-sql by date:

Previous
From: Daniel CAUNE
Date:
Subject: SQL92 compliance
Next
From: Michael Glaesemann
Date:
Subject: Re: SQL92 compliance