摘要:
UNION ALL--不合并重复行 Selects all records from all selectstatements. Duplicates are not removed UNION [DISTINCT] --合并重复行UNION 和 UNION DISTINCT功能相同 Selects all unique records from all selectstatements ... 阅读全文
摘要:
HANA 创建Triggers语法: CREATE TRIGGER <trigger_name> <trigger_action_time> <trigger_event> ON <subject_table_name> [REFERENCING <transition_list>] [<for_each_row>] BEGIN [<trigger_decl_list>] [<proc_hand... 阅读全文
摘要:
方法一: insert into TEST_USER values ('TEST2'||'TEST','2012-11-02'); 方法二:利用函数concat函数 insert into TEST_USER values (concat('TEST2','TEST'),'2012-11-02'); 阅读全文
摘要:
语法: CREATE TYPE {schema.}name AS TABLE (name1 type1 {, name2 type2,...}) 实列1: CREATE TYPE tt_publishers AS TABLE ( publisher INTEGER, name VARCHAR(50), price DECIMAL, cnt INTEGER ); ... 阅读全文