gpt4 book ai didi

php - 以基于 1 列的数字顺序显示两列

转载 作者:行者123 更新时间:2023-11-30 00:53:17 26 4
gpt4 key购买 nike

我有一个表,其中有“用户”列和“总计”列。我想做的是在两列表中显示两列,但我希望输出按最高总计到最低总计的顺序排列。有人可以帮我设置这个阵列吗,因为我尝试的一切都失败了。

我已经尝试过,但一无所获

<?php

include "includes/config.php";
include "includes/database.php";

$sql = "SELECT user, cur_total FROM curstats";
$result = mysql_query($sql) or die(mysql_error());

$user = $cut_attack = array();

while($row = mysql_fetch_assoc($result)) {
$user[] = $row['user'];
$cur_total[] = $row['cur_total'];
}

?>

最佳答案

您需要使用 ORDER by sql 子句:

$sql = "SELECT user, cur_total FROM curstats order by cur_total desc";

DESC - 表示从最高到最低

关于php - 以基于 1 列的数字顺序显示两列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20793263/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com