How to display odd rows in Employee table in Mysql?
SELECT id, name, department FROM Employee where MOD(id,2) = 1
BY Best Interview Question ON 19 Jan 2020
SELECT id, name, department FROM Employee where MOD(id,2) = 1