小编典典

追加两个查询的结果并作为单个表输出

sql

我有两个查询必须运行,我可以加入它们,但是它们的结果表具有相同的结构。

例如我有

select * from products where producttype=magazine

select * from products where producttype = book

我必须合并这两个查询的结果,然后将其作为一个结果输出。我必须在存储过程中执行此操作。

PS这些只是我提供的示例,我有一个复杂的表结构。最主要的是我无法加入他们。


阅读 132

收藏
2021-03-17

共1个答案

小编典典

select * from products where producttype=magazine
union
select * from products where producttype = book
2021-03-17