nvl in sql

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

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