should be something like
Code: Select all
select * from table where id not in (2, 5, 1, 7);Code: Select all
select * from table where id ~in (2, 5, 1, 7);Code: Select all
select * from table where id !in (2, 5, 1, 7);Moderator: General Moderators
Code: Select all
select * from table where id not in (2, 5, 1, 7);Code: Select all
select * from table where id ~in (2, 5, 1, 7);Code: Select all
select * from table where id !in (2, 5, 1, 7);