我有一张如下表:
content_id | contact_count
1 23
2 4
3 89
我想从表的最后 25 行中选择 contact_count 最高的 content_id。
我尝试了许多不同的方法,例如:
select content_id from research_products_content
where contact_count=(select max(contact_count)
from research_products_content order by rating_total_id desc limit 25)
order by rating_total_id desc limit 1