Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Tags
#null
Question

B) Oracle NVL2() function with character data type example

The following example returns the second argument which is the ABC string because the first argument is not null.

Answer

1 2 3 4SELECT NVL2 (1, 'ABC' , 'XYZ' ) FROM dual;

Tags
#null
Question

B) Oracle NVL2() function with character data type example

The following example returns the second argument which is the ABC string because the first argument is not null.

Answer
?

Tags
#null
Question

B) Oracle NVL2() function with character data type example

The following example returns the second argument which is the ABC string because the first argument is not null.

Answer

1 2 3 4SELECT NVL2 (1, 'ABC' , 'XYZ' ) FROM dual;
If you want to change selection, open document below and click on "Move attachment"

Oracle NVL2 Function By Practical Examples
nd how it works. A) Oracle NVL2() function with numeric data type example The following statement returns two because the first argument is null. 1 2 3 4 SELECT NVL2(NULL, 1, 2) -- 2 FROM dual; <span>B) Oracle NVL2() function with character data type example The following example returns the second argument which is the ABC string because the first argument is not null. 1 2 3 4 SELECT NVL2(1, 'ABC', 'XYZ') FROM dual; C) Oracle NVL2() function with orders example See the following employees and orders tables from the sample database : The following query retrieves order id, order date, and the name o

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.