sql server中多表的select查询
嘿伙计们, 我的 sql server 数据库中有 3 个表。 1. crossarticle_article 有字段:标题 2. blogs_entries 有字段:标题 3. 论坛帖子。有字段:主题
现在我想做的是,我在我的网站上进行搜索,当用户在搜索框中输入任何关键字并点击按钮时,它应该在所有这些表中搜索标题并返回单个结果集。
我怎样才能做到这一点,我正在使用 sql server 2008
hey guys,
i have 3 tables in my sql server database.
1. crossarticle_article has field: Title
2. blogs_entries has field: title
3. forums_posts. has field: subject
now what i want to do is, i have a search on my website, when user enters any keyword in the searchbox and hit button, it should search for the title in all these table and should return single resultset.
how can i achieve this, i am using sql server 2008
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样的东西:
Something like:
UNION
将返回唯一的结果,而UNION ALL
将返回所有内容,包括重复。A
UNION
will return unique results, whereas aUNION ALL
will return everything including duplicates.