I have a personID array like this (123,456,789,etc...)
What I want to do is to query like this SELECT * FROM tblperson WHERE personID <> '123' or personID <> '456' or personID <> '789'
Note that the personID i want to get is from dynamic array. Thanks!