Quote:
|
Originally Posted by broccoli
How can I join table1 and table2 so I get only one result?
|
the first thing you have to do is decide
which one of the multiple table2 rows you want
the one with the lowest department name?
the one with the latest date?
the one with the shortest description?
etc.
then you use GROUP BY and MIN(), MAX(), etc.