Conversion Functions
Conversion Functions
Besides the SQL utility functions, Oracle inbuilt function library contains type conversion functions.
There may be scenarios where the query expects input in a specific data type, but it receives it in a
different data type. In such cases, Oracle implicitly tries to convert the unexpected value to a
compatible data type which can be substituted in place and application continuity is not
compromised. Type conversion can be either implicitly done by Oracle or explicitly done by the
programmer.
Implicit data type conversion works based on a matrix which showcases the Oracle's support for
internal type casting. Besides these rules, Oracle offers type conversion functions which can be
used in the queries for explicit conversion and formatting. As a matter of fact, it is recommended
to perform explicit conversion instead of relying on software intelligence. Though implicit
conversion works well, but to eliminate the skew chances where bad inputs could be difficult to
typecast internally.
For example, examine the below SELECT queries. Both the queries will give the same result
because Oracle internally treats 15000 and '15000' as same.
Query-1
SELECT employee_id,first_name,salary
FROM employees
WHERE salary > 15000;
Query-2
SELECT employee_id,first_name,salary
FROM employees
WHERE salary > '15000';
TO_CHAR function
TO_CHAR function is used to typecast a numeric or date input to character type with a format
model optional.
Syntax
For number to character conversion, nls parameters can be used to specify decimal characters,
group separator, local currency model, or international currency model. It is an optional
specification - if not available, session level nls settings will be used. For date to character
conversion, the nls parameter can be used to specify the day and month names, as applicable.
Dates can be formatted in multiple formats after converting to character types using TO_CHAR
function. The TO_CHAR function is used to have Oracle 11g display dates in a particular format.
Format models are case sensitive and must be enclosed within single quotes.
Consider the below SELECT query. The query format the HIRE_DATE and SALARY columns of
EMPLOYEES table using TO_CHAR function.
SELECT first_name,
TO_CHAR (hire_date, 'MONTH DD, YYYY') HIRE_DATE,
TO_CHAR (salary, '$99999.99') Salary
FROM employees
WHERE rownum < 5;
The first TO_CHAR is used to convert the hire date to the date format MONTH DD, YYYY i.e. month
spelled out and padded with spaces, followed by the two-digit day of the month, and then the four-
digit year. If you prefer displaying the month name in mixed case thatis, " December " , simply use this
case in the format argument: ′ MonthDD, YYYY ′ .
The second TO_CHAR function in Figure 10-39 is used to format the SALARY to display the
currency sign and two decimal positions.
Oracle offers comprehensive set of format models. The below table shows the list of format
models which can be used to typecast date and number values as character using TO_CHAR.
,comma It returns a comma in the specified position. You can specify multiple
commas in a number format model. Restrictions:A comma element cannot
begin a number format model. A comma cannot appear to the right of a
decimal character or period in a number format model.
9 Returns value with the specified number of digits with a leading space if
positive or with a leading minus if negative. Leading zeros are blank, except
for a zero value, which returns a zero for the integer part of the fixed-point
number.
B Returns blanks for the integer part of a fixed-point number when the integer
part is zero regardlessof " 0 " sintheformatmodel.
D Returns in the specified position the decimal character, which is the current
value of the NLS_NUMERIC_CHARACTER parameter. The default is a period .
. Restriction: You can specify only one decimal character in a number
format model.
MI Returns negative value with a trailing minus sign − . Returns positive value
with a trailing blank. Restriction: The MI format element can appear only in
the last position of a number format model.
PR Returns negative value in . It can appear only in the end of a number format
model.
U Returns in the specified position the "Euro" orother dual currency symbol
thecurrentvalueoftheNLSDUALCURRENCYparameter.
TO_NUMBER function
The TO_NUMBER function converts a character value to a numeric datatype. If the string being
converted contains nonnumeric characters, the function returns an error.
Syntax
The below table shows the list of format models which can be used to typecast character values as
number using TO_NUMBER.
CC Century
BC BC/AD Indicator
Q Quarter in numbers 1, 2, 3, 4
WW Week number i. e. 1
AM, PM AM or PM
E Abbreviated era name. Valid only for calendars: Japanese Imperial, ROC
Official, Thai Buddha.
FF1..FF9 The fractional seconds. Use with timestamp. The digit controls the number of
decimal digits used for fractional seconds.
FX Format Exact: requires exact pattern matching between data and format
model.
IYY OR IY OR I The last 3,2,1 digits of the ISO standard year. Output only
RRRR The last 2 digits of the year when used for output. Accepts fout-digit years
when used for input.
SP Spelled format. Can appear of the end of a number element. The result is
always in english. For example month 10 in format MMSP returns "ten"
The SELECT queries below accept numbers as character inputs and prints them following the
format specifier.
TO_NUMBER('121.23','9G999D99')
------------------------------
121.23
TO_NUMBER('1210.73','9999.99')
------------------------------
1210.73
TO_DATE function
The function takes character values as input and returns formatted date equivalent of the same.
The TO_DATE function allows users to enter a date in any format, and then it converts the entry
into the default format used by Oracle 11g.
Syntax:
A format_mask argument consists of a series of elements representing exactly what the data
should look like and must be entered in single quotation marks.
WW Week of year 1 − 53 where week 1 starts on the first day of the year and
continues to the seventh day of the year.
W Week of month 1 − 5 where week 1 starts on the first day of the month and
ends on the seventh.
D Day of week 1 − 7.
SELECT TO_DATE('January 15, 1989, 11:00 A.M.', 'Month dd, YYYY, HH:MI A.M.',
'NLS_DATE_LANGUAGE = American')
FROM DUAL;
TO_DATE('
---------
15-JAN-89
General Functions
General functions are used to handle NULL values in database. The objective of the general NULL
handling functions is to replace the NULL values with an alternate value. We shall briefly see
through these functions below.
NVL
The NVL function substitutes an alternate value for a NULL value.
Syntax:
In the syntax, both the parameters are mandatory. Note that NVL function works with all types of
data types. And also that the data type of original string and the replacement must be in
compatible state i.e. either same or implicitly convertible by Oracle.
If arg1 is a character value, then oracle converts replacement string to the data type compatible
with arg1 before comparing them and returns VARCHAR2 in the character set of expr1. If arg1 is
numeric, then Oracle determines the argument with highest numeric precedence, implicitly
converts the other argument to that data type, and returns that data type.
The SELECT statement below will display 'n/a' if an employee has been not assigned to any job yet
i.e. JOB_ID is NULL. Otherwise, it would display the actual JOB_ID value.
NVL2
As an enhancement over NVL, Oracle introduced a function to substitute value not only for NULL
columns values but also for NOT NULL columns. NVL2 function can be used to substitute an
alternate value for NULL as well as non NULL value.
Syntax:
The SELECT statement below would display 'Bench' if the JOB_CODE for an employee is NULL. For a
definite not null value of JOB CODE, it would show constant value 'Job Assigned'.
NULLIF
The NULLIF function compares two arguments expr1 and expr2. If expr1 and expr2 are equal, it
returns NULL; else, it returns expr1. Unlike the other null handling function, first argument can't be
NULL.
Syntax:
Note that first argument can be an expression that evaluates to NULL, but it can't be the literal
NULL. Both the parameters are mandatory for the function to execute.
The below query returns NULL since both the input values, 12 are equal.
Similarly, below query return 'SUN' since both the strings are not equal.
Syntax:
Consider the below SELECT query. It selects the first not null value fed into address fields for an
employee.
Interestingly, the working of COALESCE function is similar to IF..ELSIF..ENDIF construct. The query
above can be re-written as -
Conditional Functions
Oracle provides conditional functions DECODE and CASE to impose conditions even in SQL
statement.
Syntax:
DECODE function compares expression against each search value in order. If equality exists
between expression and search argument, then it returns the corresponding result. In case of no
match, default value is returned, if defined, else NULL. In case of any type compatibility mismatch,
oracle internally does possible implicit conversion to return the results.
As a matter of fact, Oracle considers two nulls to be equivalent while working with DECODE
function.
DECOD
-----
EQUAL
If expression is null, then Oracle returns the result of the first search that is also null. The maximum
number of components in the DECODE function is 255.
CASE expression
CASE expressions works on the same concept as DECODE but differs in syntax and usage.
Syntax:
CASE [ expression ]
WHEN condition_1 THEN result_1
WHEN condition_2 THEN result_2
...
WHEN condition_n THEN result_n
ELSE result
END
Oracle search starts from left and moves rightwards until it finds a true condition, and then returns
result expression associated with it. If no condition is found to be true, and an ELSE clause exists,
then Oracle returns result defined with else. Otherwise, Oracle returns null.
The maximum number of arguments in a CASE expression is 255. All expressions count toward this
limit, including the initial expression of a simple CASE expression and the optional ELSE
expression. Each WHEN ... THEN pair counts as two arguments. To avoid exceeding this limit, you
can nest CASE expressions so that the return_expr itself is a CASE expression.
SELECT first_name, CASE WHEN salary < 200 THEN 'GRADE 1'
WHEN salary > 200 AND salary < 5000 THEN 'GRADE 2'
ELSE 'GRADE 3'
END CASE
FROM employees;
ENAM CASE
---- -------
JOHN GRADE 2
EDWIN GRADE 3
KING GRADE 1
Processing math: 100%