3-1 copyright oracle corporation, 1998. all rights reserved. sql functions functioninput arg 1 arg...

23
3-1 Copyright Oracle Corporation, 1998. All rights reserved. SQL Functions Function Function Input Input arg 1 arg 1 arg 2 arg 2 arg arg n n Function Function performs performs action action Output Output Result Result value value

Upload: aleesha-dorothy-robinson

Post on 26-Dec-2015

216 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-1 Copyright Oracle Corporation, 1998. All rights reserved.

SQL FunctionsSQL Functions

FunctionFunctionInputInput

arg 1arg 1

arg 2arg 2

arg arg nn

Function Function performs actionperforms action

OutputOutput

ResultResultvaluevalue

Page 2: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-2 Copyright Oracle Corporation, 1998. All rights reserved.

Two Types of SQL FunctionsTwo Types of SQL Functions

FunctionsFunctions

Single-row Single-row functionsfunctions

Multiple-rowMultiple-rowfunctionsfunctions

Page 3: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-3 Copyright Oracle Corporation, 1998. All rights reserved.

Single-Row FunctionsSingle-Row Functions

• Manipulate data items

• Accept arguments and return one value

• Act on each row returned

• Return one result per row

• May modify the datatype

• Can be nested

• Manipulate data items

• Accept arguments and return one value

• Act on each row returned

• Return one result per row

• May modify the datatype

• Can be nested

function_name (column|expression, [arg1, arg2,...])function_name (column|expression, [arg1, arg2,...])

Page 4: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-4 Copyright Oracle Corporation, 1998. All rights reserved.

Single-Row FunctionsSingle-Row Functions

ConversionConversion

CharacterCharacter

NumberNumber

DateDate

GeneralGeneralSingle-row Single-row functionsfunctions

Page 5: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-5 Copyright Oracle Corporation, 1998. All rights reserved.

Character FunctionsCharacter Functions

CharacterCharacterfunctionsfunctions

LOWERLOWER

UPPERUPPER

INITCAPINITCAP

CONCATCONCAT

SUBSTRSUBSTR

LENGTHLENGTH

INSTRINSTR

LPADLPAD

Case conversion Case conversion functionsfunctions

Character manipulationCharacter manipulationfunctionsfunctions

Page 6: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-6 Copyright Oracle Corporation, 1998. All rights reserved.

Function Result

Case Conversion FunctionsCase Conversion Functions

Convert case for character stringsConvert case for character stringsConvert case for character stringsConvert case for character strings

LOWER('SQL Course')

UPPER('SQL Course')

INITCAP('SQL Course')

sql course

SQL COURSE

Sql Course

Page 7: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-7 Copyright Oracle Corporation, 1998. All rights reserved.

CONCAT('Good', 'String')

SUBSTR('String',1,3)

LENGTH('String')

INSTR('String', 'r')

LPAD(sal,10,'*')

GoodString

Str

6

3

******5000

Function Result

Character Manipulation FunctionsCharacter Manipulation Functions

Manipulate character stringsManipulate character stringsManipulate character stringsManipulate character strings

Page 8: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-8 Copyright Oracle Corporation, 1998. All rights reserved.

Number FunctionsNumber Functions

• ROUND: Rounds value to specified

decimaldecimal

ROUND(45.926, 2) 45.93

• TRUNC: Truncates value to specified decimal

TRUNC(45.926, 2) 45.92

• MOD: Returns remainder of division

MOD(1600, 300) 100

• ROUND: Rounds value to specified

decimaldecimal

ROUND(45.926, 2) 45.93

• TRUNC: Truncates value to specified decimal

TRUNC(45.926, 2) 45.92

• MOD: Returns remainder of division

MOD(1600, 300) 100

Page 9: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-9 Copyright Oracle Corporation, 1998. All rights reserved.

Working with DatesWorking with Dates

• Oracle stores dates in an internal numeric format: century, year, month, day, hours, minutes, seconds.

• The default date format is DD-MON-YY.

• SYSDATE is a function returning date and time.

• DUAL is a dummy table used to view SYSDATE.

• Oracle stores dates in an internal numeric format: century, year, month, day, hours, minutes, seconds.

• The default date format is DD-MON-YY.

• SYSDATE is a function returning date and time.

• DUAL is a dummy table used to view SYSDATE.

Page 10: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-10 Copyright Oracle Corporation, 1998. All rights reserved.

Arithmetic with DatesArithmetic with Dates

• Add or subtract a number to or from a date for a resultant date value.

• Subtract two dates to find the number of days between those dates.

• Add hours to a date by dividing the number of hours by 24.

• Add or subtract a number to or from a date for a resultant date value.

• Subtract two dates to find the number of days between those dates.

• Add hours to a date by dividing the number of hours by 24.

Page 11: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-11 Copyright Oracle Corporation, 1998. All rights reserved.

Date FunctionsDate Functions

Number of monthsbetween two dates

MONTHS_BETWEEN

ADD_MONTHS

NEXT_DAY

LAST_DAY

ROUND

TRUNC

Add calendar months to date

Next day of the date specified

Last day of the month

Round date

Truncate date

Function Description

Page 12: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-12 Copyright Oracle Corporation, 1998. All rights reserved.

• MONTHS_BETWEEN ('01-SEP-95','11-JAN-94')MONTHS_BETWEEN ('01-SEP-95','11-JAN-94')

Using Date FunctionsUsing Date Functions

• ADD_MONTHS ('11-JAN-94',6)ADD_MONTHS ('11-JAN-94',6)

• NEXT_DAY ('01-SEP-95','FRIDAY') NEXT_DAY ('01-SEP-95','FRIDAY')

• LAST_DAY('01-SEP-95')LAST_DAY('01-SEP-95')

19.677419419.6774194

'11-JUL-94''11-JUL-94'

'08-SEP-95''08-SEP-95'

'30-SEP-95''30-SEP-95'

Page 13: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-13 Copyright Oracle Corporation, 1998. All rights reserved.

Using Date FunctionsUsing Date Functions

• ROUND('25-JUL-95','MONTH') 01-AUG-95ROUND('25-JUL-95','MONTH') 01-AUG-95

• ROUND('25-JUL-95','YEAR') ROUND('25-JUL-95','YEAR') 01-JAN-96 01-JAN-96

• TRUNC('25-JUL-95','MONTH') TRUNC('25-JUL-95','MONTH') 01-JUL-95 01-JUL-95

• TRUNC('25-JUL-95','YEAR')TRUNC('25-JUL-95','YEAR') 01-JAN- 01-JAN-9595

Page 14: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-14 Copyright Oracle Corporation, 1998. All rights reserved.

Implicit Datatype ConversionImplicit Datatype Conversion

For assignments, the Oracle can For assignments, the Oracle can automatically convert the following:automatically convert the following:For assignments, the Oracle can For assignments, the Oracle can automatically convert the following:automatically convert the following:

VARCHAR2 or CHAR

From To

VARCHAR2 or CHAR

NUMBER

DATE

NUMBER

DATE

VARCHAR2

VARCHAR2

Page 15: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-15 Copyright Oracle Corporation, 1998. All rights reserved.

Explicit Datatype ConversionExplicit Datatype Conversion

NUMBERNUMBER CHARACTERCHARACTER

TO_CHARTO_CHAR

TO_NUMBERTO_NUMBER

DATEDATE

TO_CHARTO_CHAR

TO_DATETO_DATE

Page 16: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-16 Copyright Oracle Corporation, 1998. All rights reserved.

TO_CHAR Function with DatesTO_CHAR Function with Dates

The format model:

• Must be enclosed in single quotation marks and is case sensitive

• Can include any valid date format element

• Has an fm element to remove padded blanks or suppress leading zeros

• Is separated from the date value by a comma

The format model:

• Must be enclosed in single quotation marks and is case sensitive

• Can include any valid date format element

• Has an fm element to remove padded blanks or suppress leading zeros

• Is separated from the date value by a comma

TO_CHAR(date, 'fmt')TO_CHAR(date, 'fmt')

Page 17: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-17 Copyright Oracle Corporation, 1998. All rights reserved.

YYYY

Elements of Date Format ModelElements of Date Format Model

YEAR

MM

MONTH

DY

DAY

Full year in numbers

Year spelled out

Two-digit value for month

Three-letter abbreviation of the day of the week

Full name of the day

Full name of the month

Page 18: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-18 Copyright Oracle Corporation, 1998. All rights reserved.

Elements of Date Format ModelElements of Date Format Model

• Time elements format the time portion of Time elements format the time portion of the date.the date.

• Add character strings by enclosing them Add character strings by enclosing them in double quotation marks.in double quotation marks.

• Number suffixes spell out numbers.Number suffixes spell out numbers.

• Time elements format the time portion of Time elements format the time portion of the date.the date.

• Add character strings by enclosing them Add character strings by enclosing them in double quotation marks.in double quotation marks.

• Number suffixes spell out numbers.Number suffixes spell out numbers.

HH24:MI:SS AM 15:45:32 PM

DD "of" MONTH 12 of OCTOBER

ddspth fourteenth

Page 19: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-19 Copyright Oracle Corporation, 1998. All rights reserved.

TO_CHAR Function with NumbersTO_CHAR Function with Numbers

Use these formats with the TO_CHAR Use these formats with the TO_CHAR function to display a number value as a function to display a number value as a character:character:

Use these formats with the TO_CHAR Use these formats with the TO_CHAR function to display a number value as a function to display a number value as a character:character:

TO_CHAR(number, 'fmt')TO_CHAR(number, 'fmt')

9

0

$

L

.

,

Represents a number

Forces a zero to be displayed

Places a floating dollar sign

Uses the floating local currency symbol

Prints a decimal point

Prints a thousand indicator

Page 20: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-20 Copyright Oracle Corporation, 1998. All rights reserved.

Using TO_CHAR Function with Numbers

Using TO_CHAR Function with Numbers

SQL> SELECT TO_CHAR(sal,'$99,999') SALARY 2 FROM emp 3 WHERE ename = 'SCOTT';

SALARY-------- $3,000

Page 21: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-21 Copyright Oracle Corporation, 1998. All rights reserved.

TO_NUMBER and TO_DATE Functions

TO_NUMBER and TO_DATE Functions

• Convert a character string to a number format using the TO_NUMBER function

• Convert a character string to a number format using the TO_NUMBER function

TO_NUMBER(char[, 'fmt'])TO_NUMBER(char[, 'fmt'])

• Convert a character string to a date format using the TO_DATE function

• Convert a character string to a date format using the TO_DATE function

TO_DATE(char[, 'fmt'])TO_DATE(char[, 'fmt'])

Page 22: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-22 Copyright Oracle Corporation, 1998. All rights reserved.

NVL FunctionNVL Function

Converts null to an actual valueConverts null to an actual value

• Datatypes that can be used are date, character, and number.

• Datatypes must match

– NVL(comm,0)

– NVL(hiredate,'01-JAN-97')

– NVL(job,'No Job Yet')

Converts null to an actual valueConverts null to an actual value

• Datatypes that can be used are date, character, and number.

• Datatypes must match

– NVL(comm,0)

– NVL(hiredate,'01-JAN-97')

– NVL(job,'No Job Yet')

Page 23: 3-1 Copyright  Oracle Corporation, 1998. All rights reserved. SQL Functions FunctionInput arg 1 arg 2 arg n Function performs action OutputResultvalue

3-23 Copyright Oracle Corporation, 1998. All rights reserved.

Using the DECODE FunctionUsing the DECODE Function

SQL> SELECT ename, sal, 2 DECODE(TRUNC(sal/1000, 0), 3 0, 0.00, 4 1, 0.09, 5 2, 0.20, 6 3, 0.30, 7 4, 0.40, 8 5, 0.42, 9 6, 0.44, 10 0.45) TAX_RATE 11 FROM emp 12 WHERE deptno = 30;

Display the applicable tax rate for each Display the applicable tax rate for each employee in department 30.employee in department 30.Display the applicable tax rate for each Display the applicable tax rate for each employee in department 30.employee in department 30.