我的 MySQL 数据库中有 2 个表:
- 顾客
- 客户计费
客户表有列
- 序列
- 公司
*customer_billing* 表有列
- 序列
- 客户序列
我在 *customer_billing* 表上运行一个选择查询,然后在一段时间内循环客户表中的一个选择查询,如下所示:
$sql="SELECT *, SUM(quantity*unitprice) as customertotal from customer_billing where resellerid = '' and salesmanid = '' and producttype = '".$_GET["producttype"]."' group by customer_seq ";
$rs=mysql_query($sql,$conn) or die(mysql_error());
while($result=mysql_fetch_array($rs))
{
$sql2="SELECT * from customer where sequence = '".$result["customer_seq"]."' and company_status = '' ";
$rs2=mysql_query($sql2,$conn) or die(mysql_error());
$result2=mysql_fetch_array($rs2);
}
我希望能够company ASC
从客户表中订购显示的结果
我已经尝试了 order_by customer_seq 显然这只订购了序列号
我也尝试过company ASC
对客户表查询进行排序,但这也不起作用
我怎样才能解决这个问题?