Hi,
I have two tables, a list of users for a system, and a list of employee's who user the system.
The tables are as follows:
Users
----------
user1
user2
user3
Employee
----------
user1
user2
User 3 can login into the system but has limited functions, I need to be able to select all user who are not currently employee's.
I know this can be done and I have tried a number of ways to get around it.
Basically I need a query select all users from the user table who do not appear in the emplyee table.
Anyone know how to get around it, they are both innodb mysql tables by the way, linked using the field username.
Thanks
