就是爱测试 发表于 2018-5-3 16:41:00

mysql 查询语句问题条件:最近10条数据中,取status=-1的数量 SELECT count(statu...

条件:最近10条数据中,取status=-1的数量SELECT count(status) FROM table where status =-1 order by ID DESC LIMIT 10 ;
我为什么无法计算status =-1 数量?它返回的怎么44个呢?不是在后面写了limit =10 吗?

Ta因为帅居然 发表于 2018-5-3 19:49:30

SELECT count(*) FROM (select * from table order by ID DESC LIMIT 10) where status =-1
页: [1]
查看完整版本: mysql 查询语句问题条件:最近10条数据中,取status=-1的数量 SELECT count(statu...