Oracle经常用到的一些函数
摘要:
1、数字函数 NVL( string1, replace_with) :如果string1为NULL,则NVL函数返回replace_with的值,否则返回string1的值,如果两个参数都为NULL ,则返回NULL。示例如下: SQL> select NVL(NULL,1) from d... 阅读全文
posted @ 2013-07-05 20:19 吴一达 阅读(403) 评论(0) 推荐(0)