[求助]该怎样写这样的SQL语句?
有条件A,B,C,D
要实现A&&(B||C||D)逻辑运算。
我是这样写的:select * from xxx where A and (B or C or D);
实际测试下,发现它执行的是:select * from xxx where A and B or C or D;
请教大虾,该怎样写这样的SQL语句? 急!
有条件A,B,C,D
要实现A&&(B||C||D)逻辑运算。
我是这样写的:select * from xxx where A and (B or C or D);
实际测试下,发现它执行的是:select * from xxx where A and B or C or D;
请教大虾,该怎样写这样的SQL语句? 急!