gpt4 book ai didi

mysql - MySql 中的全文搜索索引?

转载 作者:行者123 更新时间:2023-11-29 19:08:50 31 4
gpt4 key购买 nike

我正在使用全文搜索索引编写查询,这是对还是错。

SELECT sum(p_bi.iQty)
FROM patientbillitem p_bi, patientbillpayment p_b
WHERE Match(p_bi.vItemCode) Against( 'pbi.vItemCode')

pbi.vItemCode 是单独的表列,将其视为字符串,这是否正确?

最佳答案

作为 MySQL 文档 match() ... against() ...说:

AGAINST takes a string to search for, and an optional modifier that indicates what type of search to perform. The search string must be a string value that is constant during query evaluation. This rules out, for example, a table column because that can differ for each row.

这意味着您的查询将在 p_bi.vItemCode 字段中搜索 'pbi.vItemCode'字符串文字,而不是搜索pbi.vItemCode 字段的内容。

关于mysql - MySql 中的全文搜索索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43259353/

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