subselect bug?

Поиск
Список
Период
Сортировка
От Tatsuo Ishii
Тема subselect bug?
Дата
Msg-id 20010115220424A.t-ishii@sra.co.jp
обсуждение исходный текст
Ответы Re: subselect bug?
Re: subselect bug?
Список pgsql-hackers
While below is ok:

select * from table_a a   where (select data_a from table_a where id = a.id) >         (select data_b from table_a
whereid = a.id);
 

but this fails:

select * from table_a a   where ((select data_a from table_a where id = a.id) >          (select data_b from table_a
whereid = a.id));
 

ERROR:  parser: parse error at or near ">"

Does anybody know why?
--
Tatsuo Ishii


В списке pgsql-hackers по дате отправления: