What is the usage of NVL?
Answers were Sorted based on User's Feedback
Answer / shailesh
When we want to handle the null value of any column then we
use nvl function.
| Is This Answer Correct ? | 27 Yes | 1 No |
Answer / surendra
it is used to convert null values to any value
| Is This Answer Correct ? | 21 Yes | 1 No |
Answer / gayathri
NVL function is used to replace the null value by another
value
The syntax for the NVL function is:
NVL( value_in, replace_with )
replace_with is the value that is returned if value_in has
a null value.
| Is This Answer Correct ? | 17 Yes | 0 No |
Answer / winnie
In NVL function , it allows to replace with a value when a
null value is encountered.
The syntax is
SELECT NVL(EMP_NAME,'ABC') FROM EMP;
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / goutam
nvl(expr1,expr2)
if expr is null
expr is the converted value.
nvl(name,'not known')
name is null
then it show not known
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / manoranjan sethy
NVL stands for not a value.
Where ever value is not found nvl will convert column and expression as a value
| Is This Answer Correct ? | 0 Yes | 0 No |
What is Overloading of procedures ?
What is AUTH_ID and AUTH_USER in pl/sql ?
How do you write a subquery?
Explain normalization and what are the advantages of it?
How to change sql*plus system settings?
What do we need to check in database testing?
What is acid property in a database?
What is a behavioral trigger?
Display the total debit counts, total credit counts, sum of total debits, sum of total credits from an employee's transaction table (a single table) containing the following columns. Transaction_number Transaction_amount Transaction_date Transaction_type --> tells if the amount is a credit or a debit. As the query alone is important, the table is left with specifying just the field's name. Pls help me with this query.
what are the differences among rownum, rank and dense_rank? : Sql dba
What is sql comments?
How to recompile a already made trigger?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)