what is nvl in sql

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

showing results for - "what is nvl in sql"
Juliana
10 Feb 2019
1(NVL) replaces NULL values with same type default
2value provided.
3For Example = 
4Select NVL(commission_percentage, 0)
5From Employees;