我有一个在数据库中搜索订单的查询。我的SQL查询返回订单信息,其中订单ID是密钥(对于包含多个产品的订单,id重复),以及包含产品数量和变化的订单信息。
查询连接几个表并输出如下
|--orderid--|--orderstatus--|--ordcustid--|--orderprodname--|--orderprodqty--|--orderqty--|
|---12635---|-----11--------|-----4192----|----Product1-----|--------1-------|-----2------|
|---12635---|-----11--------|-----4192----|----Product2-----|--------1-------|-----2------|
|---12636---|-----11--------|-----3531----|----Product3-----|--------1-------|-----1------|
如上所示。客户4192订购了1个订单(orderid 12635),其中包含2个产品。客户3531已下达1个订单,其中包含1个产品(orderid 12636)。
我想要捕获每个订单的信息并将它们组合在一起。因此,虽然订单ID是相同的,但我正在收集信息。
我当前的脚本看起来像这样,但它只适用于每一行。
$result = mysql_query("
SELECT *
FROM orders, orderproducts, productimage, customers
WHERE orders.orderid = orderproducts.orderorderid
AND orderproducts.orderprodid = productimage.imageprodid
AND orders.ordcustid = customers.customerid
AND ordstatus = '11'
ORDER BY orderid
");
while($row = mysql_fetch_array($result))
{
//do stuff
}
脚本的目的是邮寄每个订单的信息。我当前的脚本正在做的是为每个产品邮寄客户(即客户4192将获得两个单独的电子邮件--1个用于Product1,1个用于Product2)。我想要做的是通过电子邮件向客户4192发送两封产品。
如何改进我的脚本,以便在orderid相同时,它将从orderid相同的所有行(例如orderproductname,qty)获取信息,然后在订单ID更改时继续。
答案 0 :(得分:0)
跟踪您所在的订单ID,并在订单ID更改之前构建电子邮件。如果是,您发送电子邮件,然后为新订单开始新的电子邮件。 e.g。
$cur_order = null;
$order_data = array();
while($row = mysql_fetch_assoc($result)) {
if ($cur_order !== $row['orderid']) {
sendOrderEmail($order_data);
$cur_order = $row['orderid'];
$order_data = array();
}
$order_data[] = $row;
}
答案 1 :(得分:0)
尝试在循环之前添加这段代码:
$last_id = 0;
在你的while()循环中:
if ( $last_id != $row['orderid'] ) {
// New Order - do some initiation stuff
$last_id = $row['orderid'];
} else {
// Continuing the current order - do some different stuff
}
以下是完整的代码:
$result = mysql_query("
SELECT *
FROM orders, orderproducts, productimage, customers
WHERE orders.orderid = orderproducts.orderorderid
AND orderproducts.orderprodid = productimage.imageprodid
AND orders.ordcustid = customers.customerid
AND ordstatus = '11'
ORDER BY orderid
");
$last_id = 0;
while($row = mysql_fetch_array($result)) {
if ( $last_id != $row['orderid'] ){
// Initiate a new order
$message_body = ''; // Reset message body for each order
$last_id = $row['orderid']; // Keep track of the orderid last used
if ( $last_id > 0 ){
// Make certain we didn't just begin the loop, then email the customer
echo "SAMPLE MESSAGE BODY FOR ORDER $last_id <br/>\r\n";
echo $message_body;
// Uncomment following lines to send an email
// $headers = $headers = 'From: My Store <info@mystore.com>\r\nContent-Type: text/html; charset=ISO-8859-1\r\n";
// $success = mail( 'customer@email.com', 'Order Confirmation', $message_body, $headers);
}
} else {
// Step through current order
// Add a line to the message body for each product record
$message_body .= "Product {$row['orderprodname']}, Qty: {$row['orderprodqty']} <br/>\r\n";
}
}
答案 2 :(得分:0)
我认为最好的选择是在查询中使用group_concat of product names
。例如,
SELECT *,group_concat(orderprodname)
FROM orders, orderproducts, productimage, customers
WHERE orders.orderid = orderproducts.orderorderid
AND orderproducts.orderprodid = productimage.imageprodid
AND orders.ordcustid = customers.customerid
AND ordstatus = '11' group by orderid
ORDER BY orderid
因此您可以在特定订单的列中分隔产品名称逗号