0
Didn't understand Meaning of this query
select ename, empno, sal, comm, sal+nvl(comm,0) from emp; Here what is a meaning of '( )' & ' , ' bracket & comma? why we are using () & , signs??
2 ответов
+ 1
nvl(comm,0) means if commission is null or blank then use 0
0
Thankyou