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 吗?
SELECT count(*) FROM (select * from table order by ID DESC LIMIT 10) where status =-1
页:
[1]