1.

Write a query to display even rows in student table using MySQL?

Answer»

SELECT * FROM STUDENT where MOD(id,2) = 0



Discussion

No Comment Found