in reply to Re: Combining two fetches with DBI and MySQL
in thread Combining two fetches with DBI and MySQL
select t1.name, t2.name from t1 left outer join t2 on t1.name = t2.name union select t2.name, t1.name from t2 left outer join t1 on t2.name = t1.name where isnull(t1.name)
|
|---|