gpt4 book ai didi

MySQL查询: searching based on all values in column rather than one value in column

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

select address
from properties.tblpropertyassetclass_property_mapping a
INNER JOIN properties.tblproperty b ON a.propertyid = b.propertyid
where propertyassetclassid =2;

这是我目前的疑问。我们可以关注查询的这个特定部分和propertyassetclassid = 2。我想对 propertyassetclassid 中​​的所有值执行此查询[此列中有 25 个随机值]。而不是像这样对每个值进行 AND 运算

   and propertyassetclassid = 4
and propertyassetclassid = 5
and propertyassetclassid = 6

我觉得应该有一种更简单的方法来完成我想要完成的任务。

最佳答案

据我所知,您可能想要这样

select address
from properties.tblpropertyassetclass_property_mapping a
INNER JOIN properties.tblproperty b ON a.propertyid = b.propertyid
where propertyassetclassid is not null

关于MySQL查询: searching based on all values in column rather than one value in column,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30547827/

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