Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为安卓开发一个应用商店应用程序。
我想根据已下载的项目对项目进行排序。Android 应用程序使用 Json 来获取文件的信息,并且文件信息位于 sql 数据库中。
如何查询每个文件的下载次数,以便按下载次数对它们进行排序?
在 SQL 查询中添加 ORDER BY 子句
就像是ORDER BY COUNT(Downloads) DESC
ORDER BY COUNT(Downloads) DESC