You are on page 1of 1

set ANSI_NULLS ON

set QUOTED_IDENTIFIER ON
go

ALTER procedure [dbo].[ProManageInvoice]


as
begin
SELECT Tbl_ILSM_Customer.CustomerName,
Main_Invoice_Table.Invoice_Id, Main_Invoice_Table.Inv_Address,
Main_Invoice_Table.Buyrs_Id,
Main_Invoice_Table.WEF, Main_Invoice_Table.pk,
Tbl_ILSM_Currency.CurrencyName
FROM Tbl_ILSM_Customer INNER JOIN
Main_Invoice_Table ON Tbl_ILSM_Customer.PK =
Main_Invoice_Table.ClntFK INNER JOIN
Tbl_ILSM_Currency ON
Main_Invoice_Table.Invoice_Currency = Tbl_ILSM_Currency.id
end

You might also like