How are outer joins implemented within PostgreSQL? I would like to do a query of the form: select a.x, b.y from a, b where a.x *= b.x; The *= operator does not seem to exist. I've been able to devise some clumsy workarounds by creating temporary tables: create table temp_table as select a.x, b.y from a, b where a.x = b.x; insert into temp_table select x from a except select a.x from a, b where a.x = b.x; Outer joins are apparently quite common, but I haven't been able to find anything on this in either the users guide, the draft of Bruce Momjian's upcoming book or the Deja News archives. Charles Mott
Hi, On Sat, 19 Feb 2000, Charles Mott wrote: > How are outer joins implemented within PostgreSQL? Sadly enough, they are not :-( -- Jens Glaser Phil.-Rosenth.-Str. 31-438 04103 Leipzig (0341) 2157167
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера