Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Backand 作为我的后端即服务,并且我正在尝试找到一种在我的应用程序中添加 MySQL 全文搜索的方法。
谁能帮我怎么做?
谢谢。
在 Backand 查询中,您可以使用任何 MySQL 语法,因此只需添加输入参数 (MyText) 作为要搜索的文本并使用此查询:
SELECT * FROM 文章 WHERE MATCH (title,body) AGAINST ('{{MyText}}' WITH QUERY EXPANSION);