-
mysql查询部门人数大于所有部门平均人数的部门
错误在于avg(count(empno))这里其实是按部门计数、按部门求平均两步查询,不能在一次子查询里实现。其实可以跳出avg(count(,直接用count总人数除count部门数来求平均:select count(distinct e
-
mysql查询一个值大于特定值
update tab1 set Column1=Column1-value1 where Column1>value2update tab1 set Column1=Column1+value1 where Column1&am