select * from table1 where id NOT IN ('..', '..', '..').
here this ('..', '..', '..'), could it just be an array expression somehow? or i have to transfer the array into this ('..', '..', '..') and then use it in sql?
thanks.
Or the right and simple answer is using implod to transfer array to string and use that string in SQL?
Any other ideas?