MSSQL 2005 でクエリ結果にプライマリ行を追加するにはどうすればよいですか。何を返す必要があるかの例を次に示します。
ここに2つのクエリがあります
クエリ 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)