A
Anonymous
Guest
This may be a stupid question:
I got 2 tables, users and results and I want to select the rows in users where the attribute id is not in any other row in results. In Oracle it would be something like:
select id from users
where id not in
(select user_id from results);
In MySQL doesnt work!!! 8O
Why? How can I do this please?
I got 2 tables, users and results and I want to select the rows in users where the attribute id is not in any other row in results. In Oracle it would be something like:
select id from users
where id not in
(select user_id from results);
In MySQL doesnt work!!! 8O
Why? How can I do this please?