摘要:
1.nvl(exp1,exp2) NVL lets you replace null (returned as a blank) with a string in the results of a query. If expr1 is null, then NVL returns expr2. If 阅读全文
摘要:
static{}(即static块),会在类被加载的时候执行且仅会被执行一次,一般用来初始化静态变量和调用静态方法,下面我们详细的讨论一下该语句块的特性及应用。 一、在程序的一次执行过程中,static{}语句块中的内容只被执行一次,看下面的示例: 示例一 结果:你会发现虽然执行了两条Class.f 阅读全文
摘要:
-- 事务级临时表:提交时删除数据 create global temporary table tmp_table1 ( x number ) on commit delete rows ; -- 会话级临时表:会话结束时删除数据 create global temporary table tmp_ 阅读全文