我有两个查询必须运行,我可以加入它们,但是它们的结果表具有相同的结构。
例如我有
select * from products where producttype=magazine select * from products where producttype = book
我必须合并这两个查询的结果,然后将其作为一个结果输出。我必须在存储过程中执行此操作。
PS这些只是我提供的示例,我有一个复杂的表结构。最主要的是我无法加入他们。
select * from products where producttype=magazine union select * from products where producttype = book