mysql SQL语句如何将sum放在where后面做条件怎么写

2024-12-26 10:33:21
推荐回答(1个)
回答1:

使用where子查询的方法
例:
select *
from 表名
where 列名>(select sum(列名) from 表名);