nvl函数

SQL> select comm,nvl(comm,0)from emp;

      COMM NVL(COMM,0)
---------- -----------
		     0
       300	   300
       500	   500
		     0
      1400	  1400
		     0
		     0
		     0
		     0
	 0	     0
		     0

      COMM NVL(COMM,0)
---------- -----------
		     0
		     0
		     0

14 rows selected.

posted @ 2014-01-01 22:15  czcb  阅读(232)  评论(0编辑  收藏  举报