繁体   English   中英

PHP Mysqli 帮助 从多个表中选择

[英]PHP Mysqli Help Selecting from multiple tables

所以..我有两个像这样的mysqli表:

第一个表名:订购项目

在此处输入图片说明

第二个:表名:卡片

在此处输入图片说明

我想要做的是从表 'order_items' 中选择 'product_id' 和 'quantity',其中 'order_id' = 1

并使用从第一个查询中提取的 'product_id',从表 'cards' 中选择 *,其中 'prd_id' = 'product_id' 和 limit = 'quantity'。 是的,可能有多个 product_ids 。 谁能帮我写一个快速的代码? php mysqli 是首选。 谢谢

<?php    
const DB_SERVER = "localhost";
const DB_USER = "user_name";
const DB_PASSWORD = "password";
const DB = "db_name";
$conn=mysqli_connect(DB_SERVER, DB_USER, DB_PASSWORD, DB); 
// $conn variable will hold the connection object 
// Get Product ids fro the order_items
$query="select product_id,quantity from order_items where order_id=1";
$result=mysqli_query($conn,$query);
$productIds=''; // Will be a string to append product ids
if(mysqli_num_rows($result) > 0)) 
{
   while ($row = mysqli_fetch_assoc($result)) {
      $productIds.=$row['product_id'].',';
   }
}
$productIds=rtrim($productIds,',');// Remove the last comma
// Once you get the product ids.
$query="select * from cards where prd_id in($productIds) limit 10";
// Limit should be exapmple - Limit 10 
$result=mysqli_query($conn,$query);
$data=array();
if(mysqli_num_rows($result) > 0)) 
{
   while ($row = mysqli_fetch_assoc($result)) {
      $data[]=$row;
   }
}
print_r($data);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM