nvl operator in sql

Solutions on MaxInterview for nvl operator in sql by the best coders in the world

showing results for - "nvl operator in sql"
Camilo
07 Jun 2016
1(NVL) replaces NULL values with same type default
2value provided.
3For Example = 
4Select NVL(commission_percentage, 0)
5From Employees;