Hi I was trying to Full Outer join two tables on access because I want to keep all items.
here is my code:
SELECT aa.*, bb.firstname, bb.lastname, bb.totalcost
FROM (select IT.*,HR.*from IT
left join HR on HR.firstname=it.firstname and HR.lastname=IT.lastname)
AS
aa FULL OUTER JOIN 2016totalcost AS bb ON (bb.lastname=aa.IT.lastname)
AND (bb.firstname=aa.IT.firstname);
But I got error syntax error in from clause
Thanks for help