Re: Antw: [SQL] LEFT JOIN

2000-07-04 Thread Tom Lane
Antti Linno <[EMAIL PROTECTED]> writes: >> I think, the following select will solve your problem >> >> select first.id >> from first >> except >> second.id_first >> from second; >> > Nay, I got parse error. Should be ... EXCEPT SELECT second.id_first ... Anyway, we should have full ANSI join

ODP: Antw: [SQL] LEFT JOIN

2000-07-04 Thread Rybarczyk Mikolaj
Try this: > Nay, I got parse error. > Antti select first.id from first except select second.id_first from second; Greetings, Mikolaj.

Re: Antw: [SQL] LEFT JOIN

2000-07-04 Thread Erol Oz
Antti Linno wrote: > > > I think, the following select will solve your problem > > > > select first.id > > from first > > except > > second.id_first > > from second; > > > Nay, I got parse error. 'select' is missing after 'except'. select first.id from first except select second.id_firs

Re: Antw: [SQL] LEFT JOIN

2000-07-04 Thread Antti Linno
> I think, the following select will solve your problem > > select first.id > from first > except > second.id_first > from second; > Nay, I got parse error. Antti

Antw: [SQL] LEFT JOIN

2000-07-04 Thread Gerhard Dieringer
Antti Linno wrote: > Greetings. > I have a problem. I have 2 tables. E.g. work and workers. I want to > select records, that 1st table has, and the second hasn't(both have id > attribute). I mean I can't do it with is NULL, because those records don't > exist. I was shown, how it is done with my

[SQL] LEFT JOIN

2000-07-04 Thread Antti Linno
Greetings. I have a problem. I have 2 tables. E.g. work and workers. I want to select records, that 1st table has, and the second hasn't(both have id attribute). I mean I can't do it with is NULL, because those records don't exist. I was shown, how it is done with mysql select first.id,second.id