i have two tables
TABLE A
LoanID
HistoryCounter
DateMailed
TransactionCode
TransactionAmt
TABLE B
LoanID
HistoryCOunter
TransactionDate
TransactionCode
TransactionAmt
All i want is to have a view where i can select all items in table a and b at the same time.
VIEW
LoanID
HistoryCounter
TransactionDate
TransactionCode
TransactionAmt
there are no identical items in each table but common loanids. if the transactioncode is above 500 then it will come from table a. How can i combine these two tables into 1 view?
TABLE A
LoanID
HistoryCounter
DateMailed
TransactionCode
TransactionAmt
TABLE B
LoanID
HistoryCOunter
TransactionDate
TransactionCode
TransactionAmt
All i want is to have a view where i can select all items in table a and b at the same time.
VIEW
LoanID
HistoryCounter
TransactionDate
TransactionCode
TransactionAmt
there are no identical items in each table but common loanids. if the transactioncode is above 500 then it will come from table a. How can i combine these two tables into 1 view?