gpt4 book ai didi

php - mysql-通过id从一个表中选择一个产品,然后从另一个表中选择它的关联图像

转载 作者:行者123 更新时间:2023-11-29 00:34:22 24 4
gpt4 key购买 nike

我有一张产品表和一张图片。每个产品都有多个图像。我想根据其 ID 检索产品并获取其所有关联图像。到目前为止我有这个查询,但它没有返回任何东西...希望能得到一些帮助。

$result = mysqli_query(
$link, sprintf("
SELECT * FROM products product
JOIN images image
ON product.id = image.product_id
WHERE product.id='%s'",
mysqli_escape_string($link, $id)
)
);

最佳答案

SELECT * FROM products JOIN images ON products.id = images.product_id WHERE products.id='%s'

关于php - mysql-通过id从一个表中选择一个产品,然后从另一个表中选择它的关联图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15041086/

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