我想知道我们如何使用IN
比较语法来做到这一点。
当前的 SQL 查询是:
select * from employee
where (employeeName = 'AJAY' and month(empMonth) = month(curdate()))
or (employeeName ='VINAY' and month(empMonth) = month(curdate()))
我尝试使用IN
比较功能,但无法正确设置碎片。谁能帮我?
select * from employee
where employeeName in ('AJAY','VINAY')
and month(empMonth) = month(curdate()); // ERROR.
我在 MySQL Query 中尝试过。
谢谢你,辛杜