Single Row Functions
Single Row Functions
Single row functions can be categorized into five. These will be applied for each
row and produces individual output for each row.
⮚ Numeric functions
⮚ String functions
⮚ Date functions
⮚ Miscellaneous functions
⮚ Conversion functions
NUMERIC FUNCTIONS
⮚ Abs
⮚ Sign
⮚ Sqrt
⮚ Mod
⮚ Nvl
⮚ Power
⮚ Exp
⮚ Ln
⮚ Log
⮚ Ceil
⮚ Floor
⮚ Round
⮚ Trunk
⮚ Bitand
⮚ Greatest
⮚ Least
⮚ Coalesce
a) ABS
Ex:
SQL> select abs(5), abs(-5), abs(0), abs(null) from dual;
b) SIGN
Ex:
SQL> select sign(5), sign(-5), sign(0), sign(null) from dual;
c) SQRT
Ex:
SQL> select sqrt(4), sqrt(0), sqrt(null), sqrt(1) from dual;
SQRT(4) SQRT(0) SQRT(NULL) SQRT(1)
---------- ---------- --------------- ----------
2 0 1
d) MOD
Ex:
SQL> select mod(7,4), mod(1,5), mod(null,null), mod(0,0), mod(-7,4) from
dual;
e) NVL
This will substitutes the specified value in the place of null values.
Ex:
SQL> select * from student; -- here for 3rd row marks value is null
NO NAME MARKS
--- ------- ---------
1 a 100
2 b 200
3 c
NO NAME NVL(MARKS,300)
--- ------- ---------------------
1 a 100
2 b 200
3 c 300
f) POWER
Power is the ability to raise a value to a given exponent.
Ex:
SQL> select power(2,5), power(0,0), power(1,1), power(null,null),
power(2,-5)
from dual;
g) EXP
h) LN
Syntax: ln (value) -- here value must be greater than zero which is positive
only.
Ex:
SQL> select ln(1), ln(2), ln(null) from dual;
i) LOG
Syntax: log (10, value) -- here value must be greater than zero which is
positive only.
Ex:
SQL> select log(10,100), log(10,2), log(10,1), log(10,null) from dual;
LN(3) LOG(EXP(1),3)
------- -----------------
1.09861229 1.09861229
j) CEIL
This will produce a whole number that is greater than or equal to the
specified value.
Ex:
SQL> select ceil(5), ceil(5.1), ceil(-5), ceil( -5.1), ceil(0),
ceil(null) from dual;
This will produce a whole number that is less than or equal to the specified
value.
Ex:
SQL> select floor(5), floor(5.1), floor(-5), floor( -5.1), floor(0),
floor(null) from
dual;
Ex:
SQL> select round(123.2345), round(123.2345,2), round(123.2354,2) from
dual;
m) TRUNC
Ex:
SQL> select trunc(123.2345), trunc(123.2345,2), trunc(123.2354,2) from
dual;
n) BITAND
Ex:
SQL> select bitand(2,3), bitand(0,0), bitand(1,1), bitand(null,null),
bitand(-2,-3)
from dual;
BITAND(2,3) BITAND(0,0) BITAND(1,1) BITAND(NULL,NULL) BITAND(-2,-3)
-------------- --------------- -------------- ------------------------
-----------------
2 0 1
-4
o) GREATEST
GREATEST(1,2,3) GREATEST(-1,-2,-3)
-------------------- -----------------------
3 -1
p) LEAST
Ex:
SQL> select least(1, 2, 3), least(-1, -2, -3) from dual;
LEAST(1,2,3) LEAST(-1,-2,-3)
-------------------- -----------------------
1 -3
⮚ If all the values are zeros then it will display zero.
⮚ If all the parameters are nulls then it will display nothing.
⮚ If any of the parameters is null it will display nothing.
q) COALESCE
Ex:
SQL> select coalesce(1,2,3), coalesce(null,2,null,5) from dual;
COALESCE(1,2,3) COALESCE(NULL,2,NULL,5)
------------------- -------------------------------
1 2
STRING FUNCTIONS
⮚ Initcap
⮚ Upper
⮚ Lower
⮚ Length
⮚ Rpad
⮚ Lpad
⮚ Ltrim
⮚ Rtrim
⮚ Trim
⮚ Translate
⮚ Replace
⮚ Soundex
⮚ Concat ( ‘ || ‘ Concatenation operator)
⮚ Ascii
⮚ Chr
⮚ Substr
⮚ Instr
⮚ Decode
⮚ Greatest
⮚ Least
⮚ Coalesce
a) INITCAP
Ex:
SQL> select initcap('computer') from dual;
INITCAP
-----------
Computer
b) UPPER
Ex:
SQL> select upper('computer') from dual;
UPPER
-----------
COMPUTER
c) LOWER
Ex:
SQL> select lower('COMPUTER') from dual;
LOWER
-----------
computer
d) LENGTH
Ex:
SQL> select length('computer') from dual;
LENGTH
-----------
8
e) RPAD
This will allows you to pad the right side of a column with any set of
characters.
Ex:
SQL> select rpad('computer',15,'*'), rpad('computer',15,'*#') from dual;
RPAD('COMPUTER' RPAD('COMPUTER'
---------------------- ----------------------
computer******* computer*#*#*#*
f) LPAD
This will allows you to pad the left side of a column with any set of
characters.
Syntax: lpad (string, length [, padding_char])
Ex:
SQL> select lpad('computer',15,'*'), lpad('computer',15,'*#') from dual;
LPAD('COMPUTER' LPAD('COMPUTER'
--------------------- ---------------------
*******computer *#*#*#*computer
g) LTRIM
This will trim off unwanted characters from the left end of string.
Ex:
SQL> select ltrim('computer','co'), ltrim('computer','com') from dual;
LTRIM( LTRIM
-------- ---------
mputer puter
LTRIM('C LTRIM('C
---------- ----------
computer computer
h) RTRIM
This will trim off unwanted characters from the right end of string.
Syntax: rtrim (string [, unwanted_chars])
Ex:
SQL> select rtrim('computer','er'), rtrim('computer','ter') from dual;
RTRIM( RTRIM
-------- ---------
comput compu
RTRIM('C RTRIM('C
---------- ----------
computer computer
-- If you haven’t specify any unwanted characters it will display entire
string.
i) TRIM
This will trim off unwanted characters from the both sides of string.
Ex:
SQL> select trim( 'i' from 'indiani') from dual;
TRIM(
-----
ndian
SQL> select trim( leading'i' from 'indiani') from dual; -- this will work as
LTRIM
TRIM(L
------
ndiani
SQL> select trim( trailing'i' from 'indiani') from dual; -- this will work as
RTRIM
TRIM(T
------
Indian
j) TRANSLATE
Ex:
SQL> select translate('india','in','xy') from dual;
TRANS
--------
xydxa
k) REPLACE
Ex:
SQL> select replace('india','in','xy'), replace(‘india’,’in’) from dual;
REPLACE REPLACE
----------- -----------
Xydia dia
l) SOUNDEX
This will be used to find words that sound like other words, exclusively used
in where
clause.
Syntax: soundex (string)
Ex:
SQL> select * from emp where soundex(ename) = soundex('SMIT');
m) CONCAT
Ex:
SQL> select concat('computer',' operator') from dual;
CONCAT('COMPUTER'
-------------------------
computer operator
If you want to combine more than two strings you have to use concatenation
operator(||).
'HOW'||'ARE
---------------
how are you
n) ASCII
This will return the decimal representation in the database character set of
the first
character of the string.
Ex:
SQL> select ascii('a'), ascii('apple') from dual;
ASCII('A') ASCII('APPLE')
------------ ------------------
97 97
o) CHR
This will return the character having the binary equivalent to the string in
either the
database character set or the national character set.
Ex:
SQL> select chr(97) from dual;
CHR
-----
a
p) SUBSTR
Ex:
SQL> select substr('computer',2), substr('computer',2,5), substr('computer',3,7)
from dual;
1 2 3 4 5 6 7 8
C O M P U T E R
-8 -7 -6 -5 -4 -3 -2 -1
q) INSTR
This will allows you for searching through a string for set of characters.
Ex:
SQL> select instr('information','o',4,1), instr('information','o',4,2)
from dual;
INSTR('INFORMATION','O',4,1) INSTR('INFORMATION','O',4,2)
------------------------------------ -------------------------------------
4 10
⮚ If you are not specifying start_chr_count and occurrence then it will start
search from the beginning and finds first occurrence only.
⮚ If both parameters start_chr_count and occurrence are null, it will display
nothing.
r) DECODE
Ex:
SQL> select sal, decode(sal,500,'Low',5000,'High','Medium') from emp;
SAL DECODE
----- ---------
500 Low
2500 Medium
2000 Medium
3500 Medium
3000 Medium
5000 High
4000 Medium
5000 High
1800 Medium
1200 Medium
2000 Medium
2700 Medium
2200 Medium
3200 Medium
DECODE(1,1,3) DECODE(1,2,3,4,4,6)
----------------- ------------------------
3 6
⮚ If the number of parameters are odd and different then decode will display
nothing.
⮚ If the number of parameters are even and different then decode will display
last
value.
⮚ If all the parameters are null then decode will display nothing.
⮚ If all the parameters are zeros then decode will display zero.
s) GREATEST
Ex:
SQL> select greatest('a', 'b', 'c'), greatest('satish','srinu','saketh')
from dual;
GREAT GREAT
------- -------
c srinu
t) LEAST
Ex:
SQL> select least('a', 'b', 'c'), least('satish','srinu','saketh') from
dual;
LEAST LEAST
------- -------
a saketh
u) COALESCE
Ex:
SQL> select coalesce('a','b','c'), coalesce(null,'a',null,'b') from dual;
COALESCE COALESCE
----------- -----------
a a
DATE FUNCTIONS
⮚ Sysdate
⮚ Current_date
⮚ Current_timestamp
⮚ Systimestamp
⮚ Localtimestamp
⮚ Dbtimezone
⮚ Sessiontimezone
⮚ To_char
⮚ To_date
⮚ Add_months
⮚ Months_between
⮚ Next_day
⮚ Last_day
⮚ Extract
⮚ Greatest
⮚ Least
⮚ Round
⮚ Trunc
⮚ New_time
⮚ Coalesce
Oracle default date format is DD-MON-YY.
We can change the default format to our desired format by using the following
command.
a) SYSDATE
SYSDATE
-----------
24-DEC-06
b) CURRENT_DATE
Ex:
SQL> select current_date from dual;
CURRENT_DATE
------------------
24-DEC-06
c) CURRENT_TIMESTAMP
This will returns the current timestamp with the active time zone information.
Ex:
SQL> select current_timestamp from dual;
CURRENT_TIMESTAMP
---------------------------------------------------------------------------
24-DEC-06 03.42.41.383369 AM +05:30
d) SYSTIMESTAMP
This will returns the system date, including fractional seconds and time zone
of the
database.
Ex:
SQL> select systimestamp from dual;
SYSTIMESTAMP
---------------------------------------------------------------------------
24-DEC-06 03.49.31.830099 AM +05:30
e) LOCALTIMESTAMP
This will returns local timestamp in the active time zone information, with no
time
zone information shown.
Ex:
SQL> select localtimestamp from dual;
LOCALTIMESTAMP
---------------------------------------------------------------------------
24-DEC-06 03.44.18.502874 AM
f) DBTIMEZONE
This will returns the current database time zone in UTC format. (Coordinated
Universal
Time)
Ex:
SQL> select dbtimezone from dual;
DBTIMEZONE
---------------
-07:00
g) SESSIONTIMEZONE
This will returns the value of the current session’s time zone.
Ex:
SQL> select sessiontimezone from dual;
SESSIONTIMEZONE
------------------------------------
+05:30
h) TO_CHAR
DATE FORMATS
D -- No of days in week
DD -- No of days in month
DDD -- No of days in year
MM -- No of month
MON -- Three letter abbreviation of month
MONTH -- Fully spelled out month
RM -- Roman numeral month
DY -- Three letter abbreviated day
DAY -- Fully spelled out day
Y -- Last one digit of the year
YY -- Last two digits of the year
YYY -- Last three digits of the year
YYYY -- Full four digit year
SYYYY -- Signed year
I -- One digit year from ISO standard
IY -- Two digit year from ISO standard
IYY -- Three digit year from ISO standard
IYYY -- Four digit year from ISO standard
Y, YYY -- Year with comma
YEAR -- Fully spelled out year
CC -- Century
Q -- No of quarters
W -- No of weeks in month
WW -- No of weeks in year
IW -- No of weeks in year from ISO standard
HH -- Hours
MI -- Minutes
SS -- Seconds
FF -- Fractional seconds
AM or PM -- Displays AM or PM depending upon time of day
A.M or P.M -- Displays A.M or P.M depending upon time of day
AD or BC -- Displays AD or BC depending upon the date
A.D or B.C -- Displays AD or BC depending upon the date
FM -- Prefix to month or day, suppresses padding of month or day
TH -- Suffix to a number
SP -- suffix to a number to be spelled out
SPTH -- Suffix combination of TH and SP to be both spelled out
THSP -- same as SPTH
Ex:
SQL> select to_char(sysdate,'dd month yyyy hh:mi:ss am dy') from dual;
TO_CHAR(SYSDATE,'DDMONTHYEAR')
-------------------------------------------------------
24 december two thousand six
TO_CHAR(S
------------
24th 24TH
TO_CHAR(SYSDATE,'DDSPTHDDSPTH
------------------------------------------
twenty-fourth TWENTY-FOURTH
TO_CHAR(SYSDATE,'DDSPDDSPDDSP')
------------------------------------------------
twenty-four Twenty-Four TWENTY-FOUR
i) TO_DATE
Ex:
SQL> select to_char(to_date('24/dec/2006','dd/mon/yyyy'), 'dd * month *
day')
from dual;
TO_CHAR(TO_DATE('24/DEC/20
--------------------------
24 * december * Sunday
-- If you are not using to_char oracle will display output in default date format.
j) ADD_MONTHS
Ex:
SQL> select add_months(to_date('11-jan-1990','dd-mon-yyyy'), 5) from
dual;
ADD_MONTHS
----------------
11-JUN-90
ADD_MONTH
---------------
11-AUG-89
k) MONTHS_BETWEEN
Ex:
SQL> select months_between(to_date('11-aug-1990','dd-mon-yyyy'),
to_date('11-
jan-1990','dd-mon-yyyy')) from dual;
MONTHS_BETWEEN(TO_DATE('11-AUG-1990','DD-MON-YYYY'),TO_DATE('11-JAN-1990','DD-MON-
YYYY'))
-----------------------------------------------------------------------------------
------------
7
SQL> select months_between(to_date('11-jan-1990','dd-mon-yyyy'),
to_date('11-
aug-1990','dd-mon-yyyy')) from dual;
MONTHS_BETWEEN(TO_DATE('11-JAN-1990','DD-MON-YYYY'),TO_DATE('11-AUG-1990','DD-MON-
YYYY'))
-----------------------------------------------------------------------------------
--------------
-7
l) NEXT_DAY
This will produce next day of the given day from the specified date.
Ex:
SQL> select next_day(to_date('24-dec-2006','dd-mon-yyyy'),'sun') from
dual;
NEXT_DAY(
-------------
31-DEC-06
m) LAST_DAY
Ex:
SQL> select last_day(to_date('24-dec-2006','dd-mon-yyyy'),'sun') from
dual;
LAST_DAY(
-------------
31-DEC-06
n) EXTRACT
Ex:
SQL> select extract(year from sysdate) from dual;
EXTRACT(YEARFROMSYSDATE)
------------------------------------
2006
o) GREATEST
GREATEST(
-------------
11-APR-90
p) LEAST
Ex:
SQL> select least(to_date('11-jan-90','dd-mon-yy'),to_date('11-mar-
90','dd-mon-
yy'),to_date('11-apr-90','dd-mon-yy')) from dual;
LEAST(
-------------
11-JAN-90
q) ROUND
Round will rounds the date to which it was equal to or greater than the given
date.
If the second parameter was year then round will checks the month of the given
date in
the following ranges.
JAN -- JUN
JUL -- DEC
If the month falls between JAN and JUN then it returns the first day of the
current year.
If the month falls between JUL and DEC then it returns the first day of the
next year.
If the second parameter was month then round will checks the day of the given
date in
the following ranges.
1 -- 15
16 -- 31
If the day falls between 1 and 15 then it returns the first day of the current
month.
If the day falls between 16 and 31 then it returns the first day of the next
month.
If the second parameter was day then round will checks the week day of the
given date
in the following ranges.
SUN -- WED
THU -- SUN
If the week day falls between SUN and WED then it returns the previous sunday.
If the weekday falls between THU and SUN then it returns the next sunday.
Ex:
SQL> select round(to_date('24-dec-04','dd-mon-yy'),'year'),
round(to_date('11-mar-
06','dd-mon-yy'),'year') from dual;
ROUND(TO_ ROUND(TO_
------------ ---------------
01-JAN-05 01-JAN-06
ROUND(TO_ ROUND(TO_
------------- ---------------
01-JAN-04 01-FEB-04
ROUND(TO_ ROUND(TO_
-------------- --------------
24-DEC-06 31-DEC-06
Trunc will chops off the date to which it was equal to or less than the given
date.
⮚ If the second parameter was year then it always returns the first day of the
current year.
⮚ If the second parameter was month then it always returns the first day of the
current month.
⮚ If the second parameter was day then it always returns the previous sunday.
⮚ If the second parameter was null then it returns nothing.
⮚ If the you are not specifying the second parameter then trunk will resets the
time to the begining of the current day.
Ex:
SQL> select trunc(to_date('24-dec-04','dd-mon-yy'),'year'),
trunc(to_date('11-mar-
06','dd-mon-yy'),'year') from dual;
TRUNC(TO_ TRUNC(TO_
------------- --------------
01-JAN-04 01-JAN-06
TRUNC(TO_ TRUNC(TO_
------------- -------------
01-JAN-04 01-JAN-04
TO_CHAR(TRUNC(TO_DATE('
---------------------------------
24 dec 2006 [Link] am
s) NEW_TIME
TIMEZONES
Ex:
SQL> select to_char(new_time(sysdate,'gmt','yst'),'dd mon yyyy hh:mi:ss
am') from
dual;
TO_CHAR(NEW_TIME(SYSDAT
-----------------------------------
24 dec 2006 [Link] pm
TO_CHAR(NEW_TIME(SYSDAT
-----------------------
24 dec 2006 [Link] pm
t) COALESCE
Ex:
SQL> select coalesce('12-jan-90','13-jan-99'), coalesce(null,'12-jan-
90','23-mar-
98',null) from dual;
COALESCE( COALESCE(
------------- ------------
12-jan-90 12-jan-90
MISCELLANEOUS FUNCTIONS
⮚ Uid
⮚ User
⮚ Vsize
⮚ Rank
⮚ Dense_rank
a) UID
This will returns the integer value corresponding to the user currently logged
in.
Ex:
SQL> select uid from dual;
UID
----------
319
b) USER
Ex:
SQL> select user from dual;
USER
----------------
SAKETH
c) VSIZE
d) RANK
Ex:
SQL> select rownum,sal from (select sal from emp order by sal desc);
ROWNUM SAL
---------- ----------
1 5000
2 3000
3 3000
4 2975
5 2850
6 2450
7 1600
8 1500
9 1300
10 1250
11 1250
12 1100
13 1000
14 950
15 800
RANK(2975)WITHINGROUP(ORDERBYSALDESC)
---------------------------------------------------------
4
d) DENSE_RANK
Ex:
SQL> select dense_rank(2975) within group(order by sal desc) from emp;
DENSE_RANK(2975)WITHINGROUP(ORDERBYSALDESC)
-----------------------------------------------------------------
3
CONVERSION FUNCTIONS
⮚ Bin_to_num
⮚ Chartorowid
⮚ Rowidtochar
⮚ To_number
⮚ To_char
⮚ To_date
a) BIN_TO_NUM
This will convert the binary value to its numerical equivalent.
Ex:
SQL> select bin_to_num(1,1,0) from dual;
BIN_TO_NUM(1,1,0)
------------------------
6
b) CHAR TO ROWID
This will convert a character string to act like an internal oracle row
identifier or rowid.
c) ROWID TO CHAR
d) TO_NUMBER
e) TO_CHAR
f) TO_DATE