Hi i Need to query but skip some row's like this select * from mytable but i want query skip rows id (2.5.6.7.8.9) or skip array value can any one help with this ?
Try this query : SELECT * FROM mytable WHERE ID NOT IN (2,5,6,7,8,9) To select the rows that don't have the ids you don't want to show.