我想这样做
首先,选择最新的2500位从未登录过的用户。 其次,选择套餐并计算每个套餐中的用户数。
我的子查询如下
select packagename, count(*) from customer where id in
(select id from customer where lastlogin='0000-00-00 00:00:00' order by ID Desc limit 2500)
group by packagename;
但是我遇到以下错误
错误1235(42000):此版本的MySQL尚不支持'LIMIT& IN / ALL / ANY / SOME子查询”
我正在使用5.6.11-enterprise-commercial-advanced-log
版
我可以使用任何其他查询升级MySQL吗?