带有来自另一个表的 id 的全文索引
我有一个产品表,其中的行通过category_id 连接到类别表中的一行或多行。如果我想让这些类别名称可搜索,是否有任何解决方案来指定要为类别表中的名称创建的全文索引,该索引与产品表行中类别列中的 id 相对应?
I have a product table where the rows are connected to one or multiple rows in a category table by category_id. If I would like to make those category names searchable, is there any solution to specify the fulltext index to be created of the names in category table that corresponds to the ids in the category columns in the rows of product table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,如果您在category_name上添加全文索引,您可以获得具有特定类别名称(搜索)的产品列表,如下所示:
Yes, if you add a full text index on category_name, you can get a list of products with a certain category name (search) as so: