Here is my SQL Fiddle
And here is my Query :
select employee.eid, staff.acc_no from employee FULL JOIN staff on employee.eid = staff.eid
I can able to do join, left join, right join but not full join. It says the error
Unknown column 'employee.eid' in 'field list': select employee.eid, staff.acc_no from employee FULL JOIN staff on employee.eid = staff.eid
What is the mistake i am doing ??