sql表A 查询字段c1,c2之和不等于字段c3的列表
这样写对吗? select * from A where c1+c2 != c3
没毛病,或者select * from A where c1+c2 <> c3
验证对错的最好方式我觉得是自己去运行一下