寻找 Where 和 In 子句的正确用法。如果这不正确,请告诉我正确的使用方法
mysqli_query=($connection,"select * from tablename where a=1 or a=2 and c=1 and d=2);
我正在尝试使用 in 子句以这种方式进行查询
mysqli_query=($connection,"select * from tablename where a in(1,2) and c=1 and d=2);
当您在 a 中查找多个值时,这是使用 where 和 In 的正确方法吗?
非常感谢P