Hi I have two tables with names and amounts
Table 1 - contains a whole range of names
Table 2 - contains ONLY some of the names ON TABLE 1
i created an inner join between the names on both of these table as i need the amounts from tble 1 with the names of table 2
Is it possible to also get a list of names and amounts from table 1 which DO NOT APPEAR IN TABLE 2
this was code used to find the similar names on tbl 2 with amounts from tbl1
SELECT tbl2name, tbl1Amount
FROM list2 INNER JOIN list1 ON tbl2name = tbl1name;