摘要:
CREATE OR REPLACE TRIGGER trg_quote_otherArea_to_list before insert or delete or update of modify_date on tab_quote_other_area for each rowdeclare int 阅读全文
摘要:
with temp as(select FILE_PATH as text from TAB_CONTRACT)select substr(text,instr(text,',',1,rn)+1,instr(text,',',1,rn+1)-instr(text,',',1,rn)-1) text 阅读全文
摘要:
CREATE OR REPLACE TRIGGER TAB_AMERCE_balance_new before insert or delete or update of BL_AUDITED ON TAB_AMERCE for each rowdeclare -- local variables 阅读全文
摘要:
CREATE OR REPLACE TRIGGER trg_base_authority_insert before insert ON T_BASE_AUTHORITY for each rowdeclare integrity_error exception; errno integer; er 阅读全文
摘要:
select T.BILL_CODE,t.SCAN_TYPE,t.PIECE,SCAN_SITE,SCAN_MAN, row_number() over(partition by t.bill_code order by t.scan_date desc) AS R from tab_scan_se 阅读全文