I am using MySQL version 4.0.27-standard
everytime i use "not in" in the subquery:
it gives me an error message, whereas if i use 4.1.22-max it executes well. looking in the mysql manuals i have also tried using <> all, but that also does not work
is there a work around ??? your help is highly apprecited.
everytime i use "not in" in the subquery:
Code:
select ci.cat_id, ci.cat_title
from category_industry ci
where ci.cat_id not in
(select mc.cat_id from members_categories mc where mc.member_id = 1);
it gives me an error message, whereas if i use 4.1.22-max it executes well. looking in the mysql manuals i have also tried using <> all, but that also does not work
is there a work around ??? your help is highly apprecited.