Write a query to display even rows in student table using MySQL?
SELECT * FROM Student where MOD(id,2) = 0
BY Best Interview Question ON 05 Aug 2019
SELECT * FROM Student where MOD(id,2) = 0