gpt4 book ai didi

mysql - SQL 选择一条语句期望值以

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

我这里有以下代码:

SELECT productcode, Brand, product, size
from outerbarcodes i
where productcode = '' or productcode is null or
brand = '' or brand is null or
product = '' or product is null or
size = '' or size is null;

我想添加一个条件,不在产品代码列中包含以 'PK' 开头的值。代码将如何修改?

提前致谢

最佳答案

您可以在当前的 where 子句中添加一个 LIKE 条件:

SELECT productcode, Brand, product, size
FROM outerbarcodes i
WHERE
(productcode > '' AND productcode NOT LIKE 'PK%') OR
brand > '' OR
product > '' OR
size > '';

关于mysql - SQL 选择一条语句期望值以,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54982078/

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