gpt4 book ai didi

php - [MySQL] : Get product row - if doesn't exist by brand & product_code - get only by brand where product_code is empty

转载 作者:行者123 更新时间:2023-11-29 18:32:33 24 4
gpt4 key购买 nike

我有一个 shop_product_videos 表:

id |品牌 |产品代码 |链接

每次我加载页面时,它都会使用以下 MySQL 查询获取特定产品的视频:

SELECT link FROM shop_product_videos WHERE brand='$brand' AND product_code='$product_code' LIMIT 1

并显示它。

示例:

$brand = "Samsung"; 
$product_code = 111;

43 | Samsung | 111 | youtube.be/111222333

因此,如果我的页面加载名为“Samsung”的产品,并且它的“product_code”为“111”,它将显示数据库中该行的视频链接。

我想更新我的函数,以适应只有品牌名称但表中没有产品代码(空/空)的情况,并且我想显示该产品的“常规视频”(以及所有项目)有“三星”作为品牌)。

想要的结果示例:

$brand = "Samsung"; 
$product_code = 777;

43 | Samsung | 111 | youtube.be/111222333
44 | Samsung | | youtube.be/444555666

运行查询时,我将获得视频的第二行 (id 44),因为它没有找到与 777 product_code 完全匹配的内容

最佳答案

简单使用OR

SELECT link FROM shop_product_videos 
WHERE brand='$brand'
AND (product_code is null or product_code='$product_code')
LIMIT 1

更新1:

SELECT link FROM shop_product_videos 
WHERE brand='$brand'
AND ( product_code='$product_code' or product_code='' or product_code is null) LIMIT 1

关于php - [MySQL] : Get product row - if doesn't exist by brand & product_code - get only by brand where product_code is empty,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45564861/

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