现在我以部门人员进行查询,那么应该显示2,3,4,5 select * from 订单 where 是否公开 <> 0 and (如果是否公开为1时,判断部门ID==2,不然不进行判断 )
谢谢
------解决方案--------------------
select * from 订单 where (是否公开 =1 and 部门ID=2) or 是否公开>1
------解决方案--------------------
SQL code
select * from 订单 where 是否公开<>0 and case when 是否公开=1 then 部门ID=2 else 1=1 end
------解决方案--------------------
SQL code
-->你自己不是差不多都写出来了么?
select * from 订单 where 是否公开>1 or (是否公开=1 and 部门ID=2)
------解决方案-------------------- 上面语法不知道有没有错,大概就是这样写的。
------解决方案--------------------