如何在 MSSQL 2005 中向查询结果添加主行。这是我需要返回的示例?
这是两个查询
查询 1
select product_id, sku from products
查询 2
select product_id, sku from childproducts
结果应该是这样的。(当然没有查询1)
row 1: products.product_id, products.sku (comes from one parent table)
row 2: childproducts.product_id, childproducts.sku (comes from child table)
row 3: childproducts.product_id, childproducts.sku (comes from child table)