使用子查询搜索多个表
我需要做的是从公司和标签表中搜索并列出公司。
我的表结构如下;
标签(tag_ID、标签) tag_relation(标签_ID、公司_ID) 公司(公司 ID、公司名称、公司描述)
查询应该能够搜索公司信息(名称、描述)和标签。如果标签被搜索,相关公司应该返回。
What I need to do is searching from companies and tags table and listing companies.
My table structure is as follows;
tags (tag_ID, tag)
tag_relation (tag_ID, company_ID)
companies (company_ID, company_name, company_description)
The query should be able to search both company info (name, description) and tags. If tag searched, related companies should return.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您想运行“类似”搜索,您可以使用下面的代码。如果您有非常大的表,性能可能会很差,因为通配符会阻止索引的使用。
Assuming that you want to run "like" searches you could use the code below. If you have very large tables the performance may be pretty bad because the wild cards will prevent the use of indexes.