如图:
mysql数据结构是这样,我想取数据中每天(day)的money字段都大于10000的name字段(名字),李四在11号小于10000,只有张三在每天11、12号都大于10000,也就是说现在数据中只有张三满足、sql怎么编写
如图:
mysql数据结构是这样,我想取数据中每天(day)的money字段都大于10000的name字段(名字),李四在11号小于10000,只有张三在每天11、12号都大于10000,也就是说现在数据中只有张三满足、sql怎么编写
select a.name
from (select t.name where table(表) t where t.money > 10000 group by t.name) a
where a.name not in (select c.name where table(表) c where c.money <= 10000 group by c.name)