如何判断a、b、c三个字段同时为0则不显示这条数据

bangongJIAO1@c 发布于 2025-12-03 阅读(2)
这样写的
复制代码 代码如下:
select * from table where a<> 0 or b<> 0 or c<> 0

搞定