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;
Fetch the employee names only for even keys
-> SELECT * FROM Employee where empId % 2 = 0;
-> SELECT * FROM Employee where MOD(empId, 2) = 0;
* Your email/mobile address will not be published. required fields are marked.
* Email and mobile number will be verified before publishing the comments.