查询多个表并将结果合并到一个存储过程的返回表中?
我有几个不同的表,但它们都有 2 个同名的列。我想编写一个存储过程来搜索所有表中的一列并返回结果。有想法吗?我对 SQL 相当麻木。
I have several different tables, but they all have 2 columns that are the same name. I want to write a stored procedure that searches one column in all of the tables and returns the result. Ideas? I'm fairly nub when it comes to SQL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您要查找的操作是
UNION
或UNION ALL
。如果您使用
UNION
而不是UNION ALL
,数据库将消除多个表中可能存在的重复行。如果您知道不会有任何重复项,请使用UNION ALL
,因为它通常要快得多。The operation you are looking for is
UNION
orUNION ALL
.If you use
UNION
rather thanUNION ALL
, the database will eliminate duplicate rows that may be in multiple tables. If you know there won't be any duplicates, useUNION ALL
since it is generally much faster...etc
-- 请注意,所有列名称必须相同,并且必须位于每个表中才能正常工作
..etc
-- Note all column names have to be the same and have to be in each table for this to work
您甚至不需要存储过程...只需使用联合查询。
You wouldn't even need a stored procedure...just use a union query.