select * from aa where case when a>1 then b>1 else b=1 end
select * from aa where ((a>1 and b>1) or (a<=1 and b=1))
select * from aa where (a>1 and b>1) or (a<1 and b=1)
select * from aa where (a> 1 and b> 1)or(a <1 and b=1)
34,838
社区成员
254,632
社区内容
加载中
试试用AI创作助手写篇文章吧