Answers for "How can you get the alternate records from the table in the SQL?"

0

How can you get the alternate records from the table in the SQL?

SELECT EmpId from (SELECT rowno,EmpId from Emp) WHERE mod(rowno,2)=1;
Posted by: Guest on April-29-2021

Code answers related to "How can you get the alternate records from the table in the SQL?"

Browse Popular Code Answers by Language