7 lines
310 B
SQL
7 lines
310 B
SQL
create view vi_fund_rent_income_transfer as SELECT APZL.LOAN_FUND_RENT_INCOME.PLAN_ID AS PLAN_ID, sum(APZL.LOAN_FUND_RENT_INCOME.RENT) AS INRENT
|
|
FROM APZL.LOAN_FUND_RENT_INCOME
|
|
GROUP BY APZL.LOAN_FUND_RENT_INCOME.PLAN_ID;
|
|
|
|
-- comment on column vi_fund_rent_income_transfer.plan_id not supported: 计划编号
|
|
|