Hi,
nutze using so:
select
c1, c2
from
t1
join t2 USING(id)
Anstelle
select
c1, c2
from
t1
join t2 on t1.id = t2.id
Horst
Hi,
nutze using so:
select
c1, c2
from
t1
join t2 USING(id)
Anstelle
select
c1, c2
from
t1
join t2 on t1.id = t2.id
Horst