Question : Select from two tables but get all rows, not just inner join

I have data stored in two separate tables with the same layout used to describe tools.  the tables contain a lot of the same tools, but some unique ones as well.

Is there an easy way to create a result set that combines the data from both tables like I've shown below?

When I try a regular inner join, the results only contain the 'filter'...  does mysql have a full join?
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
table.A
=======
name      description
----      -----------
filter    filter description A
wrench    wrench description A
 
 
table.B
=======
name      description
----      -----------
hammer    hammer description B
filter    filter description B
 
 
Desired Results
===============
name     description A          description B
----     -------------          -------------
filter   filter description A   filter description B
wrench   wrench description A   
hammer                          hammer description B
Open in New Window Select All

Answer : Select from two tables but get all rows, not just inner join

Try this..

1:
2:
3:
4:
5:
6:
7:
8:
SELECT TableA.name, TableA.description AS "description A",TableB.description AS "description B"
FROM TableA
LEFT JOIN TableB ON TableA.name = TableB.name
UNION 
SELECT TableB.name, TableA.description AS "description A",TableB.description AS "description B"
FROM TableB
LEFT JOIN TableA ON TableA.name = TableB.name
ORDER BY name ASC
Open in New Window Select All
Random Solutions  
 
programming4us programming4us