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.
我有很多记录需要查询数据库。如何使用我的大量数据编写一个可以一次列出所有结果集的查询?
我在 SQL Server 2008 中使用的数据库
您想在同一个结果集上获得多个选择吗?如果是,你可以做
select column1, column2, column3 from table1 UNION ALL select column1, column2, column3 from table2
您可以根据需要多次合并,但当然您需要匹配两个选择的列。如果您只使用 UNION 它将删除重复的行。