| От | Tod McQuillin |
|---|---|
| Тема | Re: Query error corrected after vacuum |
| Дата | |
| Msg-id | Pine.GSO.4.21.0011112202540.7805-100000@sysadmin обсуждение |
| Ответ на | Query error corrected after vacuum (Matt Doucleff <matt@digitalfountain.com>) |
| Список | pgsql-general |
On Sat, 11 Nov 2000, Matt Doucleff wrote: > I'm getting the following error: > > select name from files where dir_id = > (select id from dirs where domain_id = > (select id from domains where domain = 'foo')) > > ERROR: ExecReScanSetParamPlan: extParam list of plan is NULL I don't know what's causing the error, but the above query should be the same as this multi-table join: select f.name from files f, dirs di, domains do where f.dir_id = di.id and di.domain_id = do.id and do.domain = 'foo' So if you can't get the nested sub-selects working the above query may work better. -- Tod McQuillin
В списке pgsql-general по дате отправления:
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера