条件1,条件2,条件3,条件4
我现在需要同时满足(条件1或者2)、条件3、条件4。我该如何写 sql语句?
我这样写不正确:
select * from table where a like 'string1' or b like 'string1' and c='string2' and d='string3'
和这样写也不正确:
select * from table where (a like 'string1' or b like 'string1' and c='string2' and d='string3'
我该如何写 sql语句?
參考答案:逻辑应该没错 不知道你用的是哪个数据库