gpt4 book ai didi

Mysql 与未知列匹配

转载 作者:行者123 更新时间:2023-11-30 01:19:06 24 4
gpt4 key购买 nike

我的 mysql 查询有问题:

select * from tb1 as a 
where (select count(*) from tb2 as b
where Match(b.column1) against(`a.id`) ) = '1'

Mysql出现这个错误:

1054 - Unknown column 'a.id' in 'where clause'

所以我想获取 tb1 中的所有条目,其中 tb2 中 a.id 位于“column1”列内的条目数为 1。

我希望您理解我的目的,否则请随时询问。

最佳答案

表名称应该在引号之外,“a.id”现在被处理为列名称(当然不存在),而不是 table.column 对:

against(a.`id`) 

关于Mysql 与未知列匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18756728/

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