Fetch the employee names only for even keys

Fetch the employee names only for even keys (key % 2 == 0)

-> SELECT * FROM Employee where empId % 2 = 0;

-> SELECT * FROM Employee where MOD(empId, 2) = 0;

0 Comments

Leave a reply

* Your email/mobile address will not be published. required fields are marked.

* Email and mobile number will be verified before publishing the comments.

Name *
Email *
Mobile