项目中可能回遇到or 与 and 连用,我认为or连接的前后是两个条件.所以不能一个条件分开写.
比如 一张表a 有 user_code,shared,del,company_id四个字段 我想查shared=1 且 del=0 或者del=0的数据 且company_id=1, shared是共享的意思,不区分公司,那么可以这样写
例 select user_code from a where shared=1 and del=0 or del=0
项目中可能回遇到or 与 and 连用,我认为or连接的前后是两个条件.所以不能一个条件分开写.
比如 一张表a 有 user_code,shared,del,company_id四个字段 我想查shared=1 且 del=0 或者del=0的数据 且company_id=1, shared是共享的意思,不区分公司,那么可以这样写
例 select user_code from a where shared=1 and del=0 or del=0