gpt4 book ai didi

MySQL 查询没有得到准确的输出

转载 作者:太空宇宙 更新时间:2023-11-03 10:40:36 24 4
gpt4 key购买 nike

我在表中有三个类别和子类别。类别(冒险、恢复活力、美食)和子类别(空气、气球等)

现在我正在触发下面的查询

select * from products where sub_category Like '%Air%' or 
sub_category Like '%Land%' and category = 'adventure'
and type = 'experience' and status = 'active'

现在的问题是它还获取类别 = Rejuvenation 的行。因此它应该只在 category = adventure 的地方得到结果

最佳答案

您必须在 or 语句周围使用方括号:

select * from products where (sub_category Like '%Air%' or 
sub_category Like '%Land%' )and category = 'adventure'
and type = 'experience' and status = 'active'

关于MySQL 查询没有得到准确的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39207365/

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