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.
我有一个数据库“视频”。每个视频都有一个表格,即“ID”“名称”“链接”“计数”。我希望能够从“计数”列中获取任何表的最大值,然后使用具有最高值的“链接”列。
所以我能解释的最好方法是我正在尝试在我的网站上创建一个“浏览次数最多”的部分,以便通过 $row['link'] 显示点击次数最多的部分。
希望这对我没有多大意义!
提前谢谢大家...
SELECT `id`,`name`,`link`,`count` from my_table order by `count` desc limit 5;
这将为您提供 5 个观看次数最多的链接。
提示:您不应该使用像count列名这样的词,因为它们是 MySQL 关键字。
count
SELECT `link` FROM `someTable` ORDER BY `Count` DESC LIMIT 1
这将为您link提供计数最高的行。
link