G
Guest
I am having a problem with a full join, I have been using the following
example:
SELECT d.* ,a.salary
FROM tbldetails d FULL JOIN tblAccounts a
ON d.EID = a.eid
When I run the is querie I get the following message: Syntex Error in From
clause
However when i chage the FULL to a LEFT OR RIGHT it works perfectly.
Please help.
example:
SELECT d.* ,a.salary
FROM tbldetails d FULL JOIN tblAccounts a
ON d.EID = a.eid
When I run the is querie I get the following message: Syntex Error in From
clause
However when i chage the FULL to a LEFT OR RIGHT it works perfectly.
Please help.