24 lines
933 B
SQL
24 lines
933 B
SQL
DROP TABLE IF EXISTS vv_PartnerConnectionInfoAged;
|
|
DROP VIEW IF EXISTS vv_PartnerConnectionInfoAged;
|
|
CREATE view vv_PartnerConnectionInfoAged
|
|
as
|
|
select t1.Oid Oid,
|
|
t1.CustomersFrom CustomersFrom,
|
|
t1.Customers Customers,
|
|
t1.PartnerType PartnerType,
|
|
t1.ConnectInfo ConnectInfo,
|
|
t2.DocumentNumber DocumentNumber,
|
|
t2.RegistryNumber RegistryNumber,
|
|
t1.DateExecution_Account DateExecution,
|
|
t1.DatePayment_Account DatePayment,
|
|
t1.CurrencyName_Account CurrencyName_Account,
|
|
t1.AmountHUF_Account AmountHUF,
|
|
t1.AmountDEV_Account AmountDEV,
|
|
t1.BallanceHUF BallanceHUF,
|
|
t1.BallanceDEV BallanceDEV
|
|
from PCIDetail t1 join
|
|
vv_PartnerConnectionInfoAccount t2 on
|
|
t1.CustomersFrom=t2.CustomersFrom and
|
|
t1.Customers=t2.Customers and
|
|
t1.PartnerType=t2.PartnerType and
|
|
t1.ConnectInfo=t2.ConnectInfo |