Answers for "nvl in sql"

SQL
2

nvl in sql

(NVL) replaces NULL values with same type default
value provided.
For Example = 
Select NVL(commission_percentage, 0)
From Employees;
Posted by: Guest on January-27-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language