I am a newbie in MSSQL. I keep Tax Payers and Sale and Purchase invoices of them.
I want both purchase and sale Invoices together of a specific Tax Payer in the same row. I tried to use full outer join in a stored procedure to retrieve the Invoices by day. But it does not work as I want. This is what I've done so far:
CREATE PROC InvoiceByDay @InvoiceDate datetime AS
SELECT s.Tax_Payer_ID AS ID,
s.Sale_InvoiceID AS [Sale Invoice Number],
s.Sale_Total_Amount AS [Total Sale Amount],
p.Purchase_InvoiceID AS [Purchase Invoice Number],
p.Purchase_Total_Amount AS [Total Purchase Amount]
FROM Sale_Invoice s
FULL OUTER JOIN Purchase_Invoice p
ON s.Sale_Date=@InvoiceDate
and s.Tax_Payer_ID=p.Tax_Payer_ID
and s.Sale_Date=p.Purchase_Date
And this is the output:
Even the second row is not in the specificated day, it is still on the list.What could be a good solution?Any help will be highly appreciated.
A
full outer join
keeps all records from both tables, even when there is no matching key. I think you want to do the filtering before the join:This should return all purchase and sales records on that date -- and only on that date -- even when there are no matches.