I want to select all ids except specific which like 28, 29, 30, 40. I tried following query.
SELECT * FROM oc_product_to_category WHERE product_id !IN (28, 29, 30, 40)
I searched about it and find this. but it expr IN (28, 29, 30, 40) does not working. Can any is this possible with sql function? I would like to appreciate.