0

我有以下查询为我提供了一个完整的表,其中包含正确的描述和数字:

$result = mysqli_query($con,"SELECT * FROM b_sale_basket WHERE ORDER_ID=$ID");

$total=0;
while($row = mysqli_fetch_array($result))
  {
  $quantity = $row['QUANTITY'];
  $description = $row['NAME'];
  $unitprice = $row['PRICE'];
  $lineprice = $row['PRICE']*$row['QUANTITY'];
  $total=$total+$lineprice;

$tbl_header = '<table style="width: 650px;" cellspacing="0" cellpadding="5">';
$tbl_footer = '</table>';
$tbl = '';

$tbl .= '
    <tr>
        <td style="width: 50px; text-align: left; border-bottom: 0.1em solid #808080;"><p style="color:#808080;">'.number_format($quantity,0).'</p></td>
        <td style="width: 350px; border-bottom: 0.1em solid #808080;"><p style="color:#808080;">'.$description.'</p></td>
        <td style="width: 125px; text-align:right; border-bottom: 0.1em solid #808080;"><p style="color:#808080;">'.number_format($unitprice,2).'</p></td>
        <td style="width: 125px; text-align:right; border-bottom: 0.1em solid #808080;" align="right" ><p style="color:#808080;">'.number_format($lineprice,2).'</p></td>
    </tr>
';

如您所见,$lineprice 的计算公式如下:

$lineprice = $row['PRICE']*$row['QUANTITY'];

现在我想根据该字段中的值对表格结果进行排序。我试过了:

SELECT * FROM b_sale_basket WHERE ORDER_ID=$ID ORDER BY '$lineprice' ASC

但这不起作用。如何按此列对表中的结果进行排序?

提前谢谢你,安迪

4

2 回答 2

5
ORDER BY PRICE * QUANTITY

像您尝试的那样按固定数字排序是行不通的,因为数据库不知道要与哪个字段进行比较该固定值。但是,如果您在 deb 中进行乘法运算,如上面的代码片段所示,您将获得预期的排序顺序。

于 2013-10-22T15:23:23.000 回答
0
SELECT quantity * price as total FROM b_sale_basket ORDER BY total;
于 2013-10-22T15:24:37.840 回答