CREATE TABLE #Product
(
ID INT IDENTITY(1,1),
Product VARCHAR(MAX)
)
CREATE TABLE #DocumentType
(
ID INT IDENTITY(1,1),
DocumentType INT
)
INSERT #Product (Product) EXEC usp_Products
INSERT #DocumentType (DocumentType) EXEC usp_DocType
SELECT
p.Product AS Products,
d.DocumentType AS DocumentTypes
FROM
#Product p
FULL JOIN
#Document d
ON
p.ID = d.ID