I am trying to work out a query where by it returns the employees who have not being assigned a job yet.
I've tried inner join query but it hasn't worked for me. Help is much appreciated on this :)
The two tables are as follows:
employee
• id [varchar]
• employee_name [varchar]
• department [varchar]
job
• id [varchar]
• factory [varchar]
• employee_name [varchar]
There is more dimensions in these two tables but iv only included the relevant ones.