i have a table MEN in sql server 2008 that contain 150 rows.
how i can show only the even or only the odd rows ?
thank\'s in advance
Try following
SELECT * FROM Worker WHERE MOD (WORKER_ID, 2) <> 0;