SlideShare a Scribd company logo
Single-Row Functions
Objectives After completing this lesson, you should be able to do the following: Describe various types of functions available in SQL Use character, number, and date functions in SELECT statements Describe the use of conversion functions
SQL Functions Input Output arg 1 arg 2 Result value arg n Function Function performs action
Two Types of SQL Functions Functions Multiple-row functions Single-row  functions
Single-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 function_name (column|expression, [arg1, arg2,...])
Single-Row Functions Character Number General Single-row  functions Conversion Date
Character Functions Character functions Character manipulation functions Case conversion  functions LOWER UPPER INITCAP CONCAT SUBSTR LENGTH INSTR LPAD
Function Result Case Conversion Functions Convert case for character strings sql course SQL COURSE Sql Course LOWER('SQL Course') UPPER('SQL Course') INITCAP('SQL Course')
SQL> SELECTempno, ename, deptno 2  FROMemp 3  WHERE LOWER(ename) = 'blake';     EMPNO ENAME         DEPTNO --------- ---------- --------- 7698 BLAKE             30 Using Case Conversion Functions Display the employee number, name, and department number for employee Blake. SQL> SELECTempno, ename, deptno          2  FROMemp 3  WHEREename = 'blake'; no rows selected
Character Manipulation Functions Manipulate character strings Function Result GoodString Str 6 3 ******5000 CONCAT('Good', 'String') SUBSTR('String',1,3) LENGTH('String') INSTR('String', 'r') LPAD(sal,10,'*')
Using the Character Manipulation Functions SQL> SELECT ename, CONCAT (ename, job), LENGTH(ename), 2INSTR(ename, 'A') 3 FROM   emp 4 WHERE SUBSTR(job,1,5) = 'SALES'; ENAME      CONCAT(ENAME,JOB)   LENGTH(ENAME) INSTR(ENAME,'A') ---------- ------------------- ------------- ---------------- MARTIN     MARTINSALESMAN                  62 ALLEN      ALLENSALESMAN                   51 TURNER     TURNERSALESMAN                  60 WARD       WARDSALESMAN                    42
Number Functions ROUND:		Rounds value to specified  decimal 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
Using the ROUND Function SQL> SELECT ROUND(45.923,2), ROUND(45.923,0), 2ROUND(45.923,-1) 3  FROM   DUAL; ROUND(45.923,2) ROUND(45.923,0) ROUND(45.923,-1) --------------- -------------- ----------------- 45.924650
SQL> SELECT TRUNC(45.923,2), TRUNC(45.923), 2TRUNC(45.923,-1) 3  FROM   DUAL; TRUNC(45.923,2) TRUNC(45.923) TRUNC(45.923,-1) --------------- ------------- --------------- 45.924540 Using the TRUNC Function
Using the MOD Function Calculate the remainder of the ratio of salary to commission for all employees whose job title is salesman. SQL> SELECTename, sal, comm, MOD(sal, comm) 2  FROMemp 3  WHEREjob = 'SALESMAN'; ENAME            SAL      COMM MOD(SAL,COMM) ---------- --------- --------- ------------- MARTIN          125014001250 ALLEN           1600300100 TURNER          150001500 WARD            1250500250
Working 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.
Arithmetic with Dates Add or subtract a number to or from a date for a resultant date value. Subtract two dates to find the numberof days between those dates. Add hours to a date by dividing the number of hours by 24.
Using Arithmetic Operatorswith Dates SQL> SELECT ename, (SYSDATE-hiredate)/7 WEEKS 2  FROM   emp 3  WHERE  deptno = 10; ENAME          WEEKS ---------- --------- KING       830.93709 CLARK      853.93709 MILLER     821.36566
Date Functions Function Description Number of monthsbetween two dates MONTHS_BETWEEN ADD_MONTHS Add calendar months to date NEXT_DAY Next day of the date specified LAST_DAY Last day of the month ROUND Round date  TRUNC  Truncate date
[object Object],Using Date Functions 19.6774194 ,[object Object],'11-JUL-94' ,[object Object],'08-SEP-95' ,[object Object],'30-SEP-95'
Using Date Functions ,[object Object]
ROUND('25-JUL-95','YEAR') 		 01-JAN-96
TRUNC('25-JUL-95','MONTH') 	 01-JUL-95
TRUNC('25-JUL-95','YEAR')		 01-JAN-95,[object Object]
Implicit Datatype Conversion For assignments, the Oracle can automatically convert the following: From To VARCHAR2 or CHAR NUMBER VARCHAR2 or CHAR DATE NUMBER VARCHAR2 DATE VARCHAR2
Implicit Datatype Conversion For expression evaluation, the Oracle Server can automatically convert the following: From To VARCHAR2 or CHAR NUMBER VARCHAR2 or CHAR DATE
Explicit Datatype Conversion TO_NUMBER TO_DATE DATE TO_CHAR NUMBER CHARACTER TO_CHAR
TO_CHAR Function with Dates TO_CHAR(date, 'fmt') 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
Elements of Date Format Model YYYY Full year in numbers YEAR Year spelled out MM Two-digit value for month MONTH Full name of the month Three-letter abbreviation of the day of the week DY DAY Full name of the day
Elements of Date Format Model HH24:MI:SS AM 15:45:32 PM DD "of" MONTH 12 of OCTOBER ddspth fourteenth ,[object Object]
Add character strings by enclosing them in double quotation marks.
Number suffixes spell out numbers.,[object Object]
TO_CHAR Function with Numbers TO_CHAR(number, 'fmt') Use these formats with the TO_CHAR function to display a number value as a character: 9 Represents a number 0 Forces a zero to be displayed $ Places a floating dollar sign L Uses the floating local currency symbol . Prints a decimal point , Prints a thousand indicator
Using TO_CHAR Function         with Numbers SQL> SELECTTO_CHAR(sal,'$99,999') SALARY 2  FROMemp 3  WHEREename = 'SCOTT'; SALARY -------- $3,000
TO_NUMBER and TO_DATE Functions  Convert a character string to a number format using the TO_NUMBER function TO_NUMBER(char[, 'fmt']) ,[object Object],TO_DATE(char[, 'fmt'])
RR Date Format Current Year 1995 1995 2001 2001 Specified Date 27-OCT-95 27-OCT-17 27-OCT-17 27-OCT-95 RR Format 1995 2017 2017 1995 YY Format 1995 1917 2017 2095 If the specified two-digit year is: 0–49 50–99 If two digits of the current year are: The return date is in the century before the current one The return date is in the current century 0–49 The return date is in the century after the current one The return date is in the current century 50–99
NVL Function Converts 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')
SQL> SELECT ename, sal, comm, (sal*12)+NVL(comm,0) 2  FROM   emp; ENAME            SAL      COMM (SAL*12)+NVL(COMM,0) ---------- --------- --------- -------------------- KING            500060000 BLAKE           285034200 CLARK           245029400 JONES           297535700 MARTIN          1250140016400 ALLEN           160030019500 ... 14 rows selected. Using the NVL Function
DECODE Function Facilitates conditional inquiries by doing the work of a CASE or IF-THEN-ELSE statement DECODE(col/expression, search1, result1 [, search2, result2,...,] [, default])
Using the DECODE Function SQL> SELECT job, sal, 2         DECODE(job, 'ANALYST',  SAL*1.1, 3                     'CLERK',   SAL*1.15, 4                     'MANAGER', SAL*1.20, 5                                SAL) 6                REVISED_SALARY 7  FROM   emp; JOB             SAL REVISED_SALARY --------- --------- -------------- PRESIDENT      50005000 MANAGER        28503420 MANAGER        24502940 ... 14 rows selected.
Using the DECODE Function Display the applicable tax rate for each employee in department 30. SQL> SELECT ename, sal, 2         DECODE(TRUNC(sal/1000, 0), 30, 0.00, 41, 0.09, 52, 0.20, 63, 0.30, 74, 0.40, 85, 0.42, 96, 0.44, 100.45) TAX_RATE 11  FROM    emp 12  WHERE   deptno = 30;
Nesting Functions Single-row functions can be nested to any level. Nested functions are evaluated from deepest level to the least-deep level. F3(F2(F1(col,arg1),arg2),arg3) Step 1 = Result 1 Step 2 = Result 2 Step 3 = Result 3
Nesting Functions SQL> SELECTename, 2     NVL(TO_CHAR(mgr),'No Manager') 3  FROMemp 4  WHEREmgr IS NULL; ENAME      NVL(TO_CHAR(MGR),'NOMANAGER') ---------- ----------------------------- KING       No Manager
Summary Use functions to do the following: Perform calculations on data Modify individual data items Manipulate output for groups of rows Alter date formats for display Convert column datatypes

More Related Content

What's hot

Ms sql-server
Ms sql-serverMs sql-server
Ms sql-server
Md.Mojibul Hoque
 
Introduction to oracle database (basic concepts)
Introduction to oracle database (basic concepts)Introduction to oracle database (basic concepts)
Introduction to oracle database (basic concepts)
Bilal Arshad
 
Introduction to database
Introduction to databaseIntroduction to database
Introduction to database
Pradnya Saval
 
Oracle SQL Basics
Oracle SQL BasicsOracle SQL Basics
Oracle SQL Basics
Dhananjay Goel
 
Data Modeling
Data ModelingData Modeling
Data Modeling
DrkhanchanaR
 
Database & Database Users
Database & Database UsersDatabase & Database Users
Database & Database Users
M.Zalmai Rahmani
 
Sql commands
Sql commandsSql commands
Sql commands
Prof. Dr. K. Adisesha
 
Structure of dbms
Structure of dbmsStructure of dbms
Structure of dbms
Megha yadav
 
Sql operator
Sql operatorSql operator
Sql operator
Pooja Dixit
 
Database management system1
Database management system1Database management system1
Database management system1jamwal85
 
Adbms 6 three schema database architecture
Adbms 6 three schema database architectureAdbms 6 three schema database architecture
Adbms 6 three schema database architecture
Vaibhav Khanna
 
ORACLE PL SQL
ORACLE PL SQLORACLE PL SQL
ORACLE PL SQL
Srinath Maharana
 
Database Fundamental
Database FundamentalDatabase Fundamental
Database Fundamental
Gong Haibing
 
Fundamentals of Database system
Fundamentals of Database systemFundamentals of Database system
Fundamentals of Database system
philipsinter
 
Structured query language
Structured query languageStructured query language
Structured query language
Rashid Ansari
 
Data type[s] on MS SQL Server
Data type[s] on MS SQL ServerData type[s] on MS SQL Server
Data type[s] on MS SQL Server
Chandan Banerjee
 
Presentation of DBMS (database management system) part 1
Presentation of DBMS (database management system) part 1Presentation of DBMS (database management system) part 1
Presentation of DBMS (database management system) part 1
Junaid Nadeem
 
Characteristic of dabase approach
Characteristic of dabase approachCharacteristic of dabase approach
Characteristic of dabase approach
Luina Pani
 
Unit1 DBMS Introduction
Unit1 DBMS IntroductionUnit1 DBMS Introduction
Unit1 DBMS Introduction
MUHAMMED MASHAHIL PUKKUNNUMMAL
 
Basic oracle-database-administration
Basic oracle-database-administrationBasic oracle-database-administration
Basic oracle-database-administration
sreehari orienit
 

What's hot (20)

Ms sql-server
Ms sql-serverMs sql-server
Ms sql-server
 
Introduction to oracle database (basic concepts)
Introduction to oracle database (basic concepts)Introduction to oracle database (basic concepts)
Introduction to oracle database (basic concepts)
 
Introduction to database
Introduction to databaseIntroduction to database
Introduction to database
 
Oracle SQL Basics
Oracle SQL BasicsOracle SQL Basics
Oracle SQL Basics
 
Data Modeling
Data ModelingData Modeling
Data Modeling
 
Database & Database Users
Database & Database UsersDatabase & Database Users
Database & Database Users
 
Sql commands
Sql commandsSql commands
Sql commands
 
Structure of dbms
Structure of dbmsStructure of dbms
Structure of dbms
 
Sql operator
Sql operatorSql operator
Sql operator
 
Database management system1
Database management system1Database management system1
Database management system1
 
Adbms 6 three schema database architecture
Adbms 6 three schema database architectureAdbms 6 three schema database architecture
Adbms 6 three schema database architecture
 
ORACLE PL SQL
ORACLE PL SQLORACLE PL SQL
ORACLE PL SQL
 
Database Fundamental
Database FundamentalDatabase Fundamental
Database Fundamental
 
Fundamentals of Database system
Fundamentals of Database systemFundamentals of Database system
Fundamentals of Database system
 
Structured query language
Structured query languageStructured query language
Structured query language
 
Data type[s] on MS SQL Server
Data type[s] on MS SQL ServerData type[s] on MS SQL Server
Data type[s] on MS SQL Server
 
Presentation of DBMS (database management system) part 1
Presentation of DBMS (database management system) part 1Presentation of DBMS (database management system) part 1
Presentation of DBMS (database management system) part 1
 
Characteristic of dabase approach
Characteristic of dabase approachCharacteristic of dabase approach
Characteristic of dabase approach
 
Unit1 DBMS Introduction
Unit1 DBMS IntroductionUnit1 DBMS Introduction
Unit1 DBMS Introduction
 
Basic oracle-database-administration
Basic oracle-database-administrationBasic oracle-database-administration
Basic oracle-database-administration
 

Viewers also liked (8)

Les00 Intoduction
Les00 IntoductionLes00 Intoduction
Les00 Intoduction
 
Les04 Displaying Data From Multiple Table
Les04 Displaying Data From Multiple TableLes04 Displaying Data From Multiple Table
Les04 Displaying Data From Multiple Table
 
Les06 Subqueries
Les06 SubqueriesLes06 Subqueries
Les06 Subqueries
 
Les02 Restricting And Sorting Data
Les02 Restricting And Sorting DataLes02 Restricting And Sorting Data
Les02 Restricting And Sorting Data
 
Les05 Aggregating Data Using Group Function
Les05 Aggregating Data Using Group FunctionLes05 Aggregating Data Using Group Function
Les05 Aggregating Data Using Group Function
 
Les01 Writing Basic Sql Statements
Les01 Writing Basic Sql StatementsLes01 Writing Basic Sql Statements
Les01 Writing Basic Sql Statements
 
SQL WORKSHOP::Lecture 3
SQL WORKSHOP::Lecture 3SQL WORKSHOP::Lecture 3
SQL WORKSHOP::Lecture 3
 
Oracle Basics and Architecture
Oracle Basics and ArchitectureOracle Basics and Architecture
Oracle Basics and Architecture
 

Similar to Les03 Single Row Function

COIS 420 - Practice 03
COIS 420 - Practice 03COIS 420 - Practice 03
COIS 420 - Practice 03
Angel G Diaz
 
Les03
Les03Les03
Les03 (Using Single Row Functions To Customize Output)
Les03 (Using Single Row Functions To Customize Output)Les03 (Using Single Row Functions To Customize Output)
Les03 (Using Single Row Functions To Customize Output)
Achmad Solichin
 
SQL Macros - Game Changing Feature for SQL Developers?
SQL Macros - Game Changing Feature for SQL Developers?SQL Macros - Game Changing Feature for SQL Developers?
SQL Macros - Game Changing Feature for SQL Developers?
Andrej Pashchenko
 
e computer notes - Single row functions
e computer notes - Single row functionse computer notes - Single row functions
e computer notes - Single row functionsecomputernotes
 
Les03[1] Single-Row Functions
Les03[1] Single-Row FunctionsLes03[1] Single-Row Functions
Les03[1] Single-Row Functions
siavosh kaviani
 
Select To Order By
Select  To  Order BySelect  To  Order By
Select To Order By
Krizia Capacio
 
Using single row functions to customize output
Using single row functions to customize outputUsing single row functions to customize output
Using single row functions to customize output
Syed Zaid Irshad
 
Intro to tsql unit 10
Intro to tsql   unit 10Intro to tsql   unit 10
Intro to tsql unit 10Syed Asrarali
 
Les03.pptx
Les03.pptxLes03.pptx
Les03.pptx
NishaTariq1
 
2 sql - single-row functions
2   sql - single-row functions2   sql - single-row functions
2 sql - single-row functions
Ankit Dubey
 
Database Management System
Database Management SystemDatabase Management System
Database Management System
Hitesh Mohapatra
 
Les03 Single Row Functions in Oracle and SQL.ppt
Les03 Single Row Functions in Oracle and SQL.pptLes03 Single Row Functions in Oracle and SQL.ppt
Les03 Single Row Functions in Oracle and SQL.ppt
DrZeeshanBhatti
 
Introduction To Oracle Sql
Introduction To Oracle SqlIntroduction To Oracle Sql
Introduction To Oracle Sql
Ahmed Yaseen
 

Similar to Les03 Single Row Function (20)

Les03
Les03Les03
Les03
 
Sql 3
Sql 3Sql 3
Sql 3
 
COIS 420 - Practice 03
COIS 420 - Practice 03COIS 420 - Practice 03
COIS 420 - Practice 03
 
Les03
Les03Les03
Les03
 
Les03
Les03Les03
Les03
 
Les03 (Using Single Row Functions To Customize Output)
Les03 (Using Single Row Functions To Customize Output)Les03 (Using Single Row Functions To Customize Output)
Les03 (Using Single Row Functions To Customize Output)
 
SQL Macros - Game Changing Feature for SQL Developers?
SQL Macros - Game Changing Feature for SQL Developers?SQL Macros - Game Changing Feature for SQL Developers?
SQL Macros - Game Changing Feature for SQL Developers?
 
Function and types
Function  and typesFunction  and types
Function and types
 
e computer notes - Single row functions
e computer notes - Single row functionse computer notes - Single row functions
e computer notes - Single row functions
 
Les03[1] Single-Row Functions
Les03[1] Single-Row FunctionsLes03[1] Single-Row Functions
Les03[1] Single-Row Functions
 
Select To Order By
Select  To  Order BySelect  To  Order By
Select To Order By
 
Using single row functions to customize output
Using single row functions to customize outputUsing single row functions to customize output
Using single row functions to customize output
 
Intro to tsql unit 10
Intro to tsql   unit 10Intro to tsql   unit 10
Intro to tsql unit 10
 
Les03.pptx
Les03.pptxLes03.pptx
Les03.pptx
 
2 sql - single-row functions
2   sql - single-row functions2   sql - single-row functions
2 sql - single-row functions
 
Database Management System
Database Management SystemDatabase Management System
Database Management System
 
Les03 Single Row Functions in Oracle and SQL.ppt
Les03 Single Row Functions in Oracle and SQL.pptLes03 Single Row Functions in Oracle and SQL.ppt
Les03 Single Row Functions in Oracle and SQL.ppt
 
Les01
Les01Les01
Les01
 
Les01
Les01Les01
Les01
 
Introduction To Oracle Sql
Introduction To Oracle SqlIntroduction To Oracle Sql
Introduction To Oracle Sql
 

More from NETsolutions Asia: NSA – Thailand, Sripatum University: SPU (7)

Workshop_BDATools-MSAzure.pdf
Workshop_BDATools-MSAzure.pdfWorkshop_BDATools-MSAzure.pdf
Workshop_BDATools-MSAzure.pdf
 
Managing Big Data with Apache Hadoop.pdf
Managing Big Data with Apache Hadoop.pdfManaging Big Data with Apache Hadoop.pdf
Managing Big Data with Apache Hadoop.pdf
 
Introduction-Management NoSQL with MongoDB.pdf
Introduction-Management NoSQL with MongoDB.pdfIntroduction-Management NoSQL with MongoDB.pdf
Introduction-Management NoSQL with MongoDB.pdf
 
Les12 creating views
Les12 creating viewsLes12 creating views
Les12 creating views
 
Les09 Manipulating Data
Les09 Manipulating DataLes09 Manipulating Data
Les09 Manipulating Data
 
Les11 Including Constraints
Les11 Including ConstraintsLes11 Including Constraints
Les11 Including Constraints
 
Les10 Creating And Managing Tables
Les10 Creating And Managing TablesLes10 Creating And Managing Tables
Les10 Creating And Managing Tables
 

Recently uploaded

Paddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WA
Paddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WAPaddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WA
Paddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WA
River Recreation - Washington Whitewater Rafting
 
How To Change Name On Volaris Ticket.pdf
How To Change Name On Volaris Ticket.pdfHow To Change Name On Volaris Ticket.pdf
How To Change Name On Volaris Ticket.pdf
namechange763
 
TOP 10 Historic Places To See in Kuruskhetra.
TOP 10 Historic Places To See in Kuruskhetra.TOP 10 Historic Places To See in Kuruskhetra.
TOP 10 Historic Places To See in Kuruskhetra.
ujjwalsethi113
 
Antarctica- Icy wilderness of extremes and wonder
Antarctica- Icy wilderness of extremes and wonderAntarctica- Icy wilderness of extremes and wonder
Antarctica- Icy wilderness of extremes and wonder
tahreemzahra82
 
Exploring Montreal's Artistic Heritage Top Art Galleries and Museums to Visit
Exploring Montreal's Artistic Heritage Top Art Galleries and Museums to VisitExploring Montreal's Artistic Heritage Top Art Galleries and Museums to Visit
Exploring Montreal's Artistic Heritage Top Art Galleries and Museums to Visit
Spade & Palacio Tours
 
4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA
4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA
4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA
Bush Troop Safari
 
Understanding the Running Costs of Electric Scooters.pptx
Understanding the Running Costs of Electric Scooters.pptxUnderstanding the Running Costs of Electric Scooters.pptx
Understanding the Running Costs of Electric Scooters.pptx
Zivah ElectriVa Private Limited
 
MC INTERNATIONALS | TRAVEL COMPANY IN JHANG
MC INTERNATIONALS | TRAVEL COMPANY IN JHANGMC INTERNATIONALS | TRAVEL COMPANY IN JHANG
MC INTERNATIONALS | TRAVEL COMPANY IN JHANG
AshBhatt4
 
欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】
欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】
欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】
bljeremy734
 
Jose RIZAL History and his travel Paris to berlin
Jose RIZAL History and his travel Paris to berlinJose RIZAL History and his travel Paris to berlin
Jose RIZAL History and his travel Paris to berlin
MaryGraceArdalesLope
 
Agence Régionale du Tourisme Grand Est - brochure MICE 2024.pdf
Agence Régionale du Tourisme Grand Est - brochure MICE 2024.pdfAgence Régionale du Tourisme Grand Est - brochure MICE 2024.pdf
Agence Régionale du Tourisme Grand Est - brochure MICE 2024.pdf
MICEboard
 
TRAVEL TO MT. RWENZORI NATIONAL PARK WITH NILE ABENTEUER SAFARIS.docx
TRAVEL TO MT. RWENZORI NATIONAL PARK WITH NILE ABENTEUER SAFARIS.docxTRAVEL TO MT. RWENZORI NATIONAL PARK WITH NILE ABENTEUER SAFARIS.docx
TRAVEL TO MT. RWENZORI NATIONAL PARK WITH NILE ABENTEUER SAFARIS.docx
nileabenteuersafaris
 
Hunza Cherry Blossom tour 2025- Hunza Adventure Tours
Hunza Cherry Blossom tour 2025- Hunza Adventure ToursHunza Cherry Blossom tour 2025- Hunza Adventure Tours
Hunza Cherry Blossom tour 2025- Hunza Adventure Tours
Hunza Adventure Tours
 
Get tailored experience with Stonehenge tours from London
Get tailored experience with Stonehenge tours from LondonGet tailored experience with Stonehenge tours from London
Get tailored experience with Stonehenge tours from London
London Country Tours
 
Exploring Heritage The Ultimate Cultural Tour in Palmer, Puerto Rico
Exploring Heritage The Ultimate Cultural Tour in Palmer, Puerto RicoExploring Heritage The Ultimate Cultural Tour in Palmer, Puerto Rico
Exploring Heritage The Ultimate Cultural Tour in Palmer, Puerto Rico
Caribbean Breeze Adventures
 
Winter Festivities in Italy
Winter Festivities in ItalyWinter Festivities in Italy
Winter Festivities in Italy
Time for Sicily
 

Recently uploaded (16)

Paddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WA
Paddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WAPaddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WA
Paddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WA
 
How To Change Name On Volaris Ticket.pdf
How To Change Name On Volaris Ticket.pdfHow To Change Name On Volaris Ticket.pdf
How To Change Name On Volaris Ticket.pdf
 
TOP 10 Historic Places To See in Kuruskhetra.
TOP 10 Historic Places To See in Kuruskhetra.TOP 10 Historic Places To See in Kuruskhetra.
TOP 10 Historic Places To See in Kuruskhetra.
 
Antarctica- Icy wilderness of extremes and wonder
Antarctica- Icy wilderness of extremes and wonderAntarctica- Icy wilderness of extremes and wonder
Antarctica- Icy wilderness of extremes and wonder
 
Exploring Montreal's Artistic Heritage Top Art Galleries and Museums to Visit
Exploring Montreal's Artistic Heritage Top Art Galleries and Museums to VisitExploring Montreal's Artistic Heritage Top Art Galleries and Museums to Visit
Exploring Montreal's Artistic Heritage Top Art Galleries and Museums to Visit
 
4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA
4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA
4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA
 
Understanding the Running Costs of Electric Scooters.pptx
Understanding the Running Costs of Electric Scooters.pptxUnderstanding the Running Costs of Electric Scooters.pptx
Understanding the Running Costs of Electric Scooters.pptx
 
MC INTERNATIONALS | TRAVEL COMPANY IN JHANG
MC INTERNATIONALS | TRAVEL COMPANY IN JHANGMC INTERNATIONALS | TRAVEL COMPANY IN JHANG
MC INTERNATIONALS | TRAVEL COMPANY IN JHANG
 
欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】
欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】
欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】
 
Jose RIZAL History and his travel Paris to berlin
Jose RIZAL History and his travel Paris to berlinJose RIZAL History and his travel Paris to berlin
Jose RIZAL History and his travel Paris to berlin
 
Agence Régionale du Tourisme Grand Est - brochure MICE 2024.pdf
Agence Régionale du Tourisme Grand Est - brochure MICE 2024.pdfAgence Régionale du Tourisme Grand Est - brochure MICE 2024.pdf
Agence Régionale du Tourisme Grand Est - brochure MICE 2024.pdf
 
TRAVEL TO MT. RWENZORI NATIONAL PARK WITH NILE ABENTEUER SAFARIS.docx
TRAVEL TO MT. RWENZORI NATIONAL PARK WITH NILE ABENTEUER SAFARIS.docxTRAVEL TO MT. RWENZORI NATIONAL PARK WITH NILE ABENTEUER SAFARIS.docx
TRAVEL TO MT. RWENZORI NATIONAL PARK WITH NILE ABENTEUER SAFARIS.docx
 
Hunza Cherry Blossom tour 2025- Hunza Adventure Tours
Hunza Cherry Blossom tour 2025- Hunza Adventure ToursHunza Cherry Blossom tour 2025- Hunza Adventure Tours
Hunza Cherry Blossom tour 2025- Hunza Adventure Tours
 
Get tailored experience with Stonehenge tours from London
Get tailored experience with Stonehenge tours from LondonGet tailored experience with Stonehenge tours from London
Get tailored experience with Stonehenge tours from London
 
Exploring Heritage The Ultimate Cultural Tour in Palmer, Puerto Rico
Exploring Heritage The Ultimate Cultural Tour in Palmer, Puerto RicoExploring Heritage The Ultimate Cultural Tour in Palmer, Puerto Rico
Exploring Heritage The Ultimate Cultural Tour in Palmer, Puerto Rico
 
Winter Festivities in Italy
Winter Festivities in ItalyWinter Festivities in Italy
Winter Festivities in Italy
 

Les03 Single Row Function

  • 2. Objectives After completing this lesson, you should be able to do the following: Describe various types of functions available in SQL Use character, number, and date functions in SELECT statements Describe the use of conversion functions
  • 3. SQL Functions Input Output arg 1 arg 2 Result value arg n Function Function performs action
  • 4. Two Types of SQL Functions Functions Multiple-row functions Single-row functions
  • 5. Single-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 function_name (column|expression, [arg1, arg2,...])
  • 6. Single-Row Functions Character Number General Single-row functions Conversion Date
  • 7. Character Functions Character functions Character manipulation functions Case conversion functions LOWER UPPER INITCAP CONCAT SUBSTR LENGTH INSTR LPAD
  • 8. Function Result Case Conversion Functions Convert case for character strings sql course SQL COURSE Sql Course LOWER('SQL Course') UPPER('SQL Course') INITCAP('SQL Course')
  • 9. SQL> SELECTempno, ename, deptno 2 FROMemp 3 WHERE LOWER(ename) = 'blake'; EMPNO ENAME DEPTNO --------- ---------- --------- 7698 BLAKE 30 Using Case Conversion Functions Display the employee number, name, and department number for employee Blake. SQL> SELECTempno, ename, deptno 2 FROMemp 3 WHEREename = 'blake'; no rows selected
  • 10. Character Manipulation Functions Manipulate character strings Function Result GoodString Str 6 3 ******5000 CONCAT('Good', 'String') SUBSTR('String',1,3) LENGTH('String') INSTR('String', 'r') LPAD(sal,10,'*')
  • 11. Using the Character Manipulation Functions SQL> SELECT ename, CONCAT (ename, job), LENGTH(ename), 2INSTR(ename, 'A') 3 FROM emp 4 WHERE SUBSTR(job,1,5) = 'SALES'; ENAME CONCAT(ENAME,JOB) LENGTH(ENAME) INSTR(ENAME,'A') ---------- ------------------- ------------- ---------------- MARTIN MARTINSALESMAN 62 ALLEN ALLENSALESMAN 51 TURNER TURNERSALESMAN 60 WARD WARDSALESMAN 42
  • 12. Number Functions ROUND: Rounds value to specified decimal 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
  • 13. Using the ROUND Function SQL> SELECT ROUND(45.923,2), ROUND(45.923,0), 2ROUND(45.923,-1) 3 FROM DUAL; ROUND(45.923,2) ROUND(45.923,0) ROUND(45.923,-1) --------------- -------------- ----------------- 45.924650
  • 14. SQL> SELECT TRUNC(45.923,2), TRUNC(45.923), 2TRUNC(45.923,-1) 3 FROM DUAL; TRUNC(45.923,2) TRUNC(45.923) TRUNC(45.923,-1) --------------- ------------- --------------- 45.924540 Using the TRUNC Function
  • 15. Using the MOD Function Calculate the remainder of the ratio of salary to commission for all employees whose job title is salesman. SQL> SELECTename, sal, comm, MOD(sal, comm) 2 FROMemp 3 WHEREjob = 'SALESMAN'; ENAME SAL COMM MOD(SAL,COMM) ---------- --------- --------- ------------- MARTIN 125014001250 ALLEN 1600300100 TURNER 150001500 WARD 1250500250
  • 16. Working 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.
  • 17. Arithmetic with Dates Add or subtract a number to or from a date for a resultant date value. Subtract two dates to find the numberof days between those dates. Add hours to a date by dividing the number of hours by 24.
  • 18. Using Arithmetic Operatorswith Dates SQL> SELECT ename, (SYSDATE-hiredate)/7 WEEKS 2 FROM emp 3 WHERE deptno = 10; ENAME WEEKS ---------- --------- KING 830.93709 CLARK 853.93709 MILLER 821.36566
  • 19. Date Functions Function Description Number of monthsbetween two dates MONTHS_BETWEEN ADD_MONTHS Add calendar months to date NEXT_DAY Next day of the date specified LAST_DAY Last day of the month ROUND Round date TRUNC Truncate date
  • 20.
  • 21.
  • 24.
  • 25. Implicit Datatype Conversion For assignments, the Oracle can automatically convert the following: From To VARCHAR2 or CHAR NUMBER VARCHAR2 or CHAR DATE NUMBER VARCHAR2 DATE VARCHAR2
  • 26. Implicit Datatype Conversion For expression evaluation, the Oracle Server can automatically convert the following: From To VARCHAR2 or CHAR NUMBER VARCHAR2 or CHAR DATE
  • 27. Explicit Datatype Conversion TO_NUMBER TO_DATE DATE TO_CHAR NUMBER CHARACTER TO_CHAR
  • 28. TO_CHAR Function with Dates TO_CHAR(date, 'fmt') 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
  • 29. Elements of Date Format Model YYYY Full year in numbers YEAR Year spelled out MM Two-digit value for month MONTH Full name of the month Three-letter abbreviation of the day of the week DY DAY Full name of the day
  • 30.
  • 31. Add character strings by enclosing them in double quotation marks.
  • 32.
  • 33. TO_CHAR Function with Numbers TO_CHAR(number, 'fmt') Use these formats with the TO_CHAR function to display a number value as a character: 9 Represents a number 0 Forces a zero to be displayed $ Places a floating dollar sign L Uses the floating local currency symbol . Prints a decimal point , Prints a thousand indicator
  • 34. Using TO_CHAR Function with Numbers SQL> SELECTTO_CHAR(sal,'$99,999') SALARY 2 FROMemp 3 WHEREename = 'SCOTT'; SALARY -------- $3,000
  • 35.
  • 36. RR Date Format Current Year 1995 1995 2001 2001 Specified Date 27-OCT-95 27-OCT-17 27-OCT-17 27-OCT-95 RR Format 1995 2017 2017 1995 YY Format 1995 1917 2017 2095 If the specified two-digit year is: 0–49 50–99 If two digits of the current year are: The return date is in the century before the current one The return date is in the current century 0–49 The return date is in the century after the current one The return date is in the current century 50–99
  • 37. NVL Function Converts 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')
  • 38. SQL> SELECT ename, sal, comm, (sal*12)+NVL(comm,0) 2 FROM emp; ENAME SAL COMM (SAL*12)+NVL(COMM,0) ---------- --------- --------- -------------------- KING 500060000 BLAKE 285034200 CLARK 245029400 JONES 297535700 MARTIN 1250140016400 ALLEN 160030019500 ... 14 rows selected. Using the NVL Function
  • 39. DECODE Function Facilitates conditional inquiries by doing the work of a CASE or IF-THEN-ELSE statement DECODE(col/expression, search1, result1 [, search2, result2,...,] [, default])
  • 40. Using the DECODE Function SQL> SELECT job, sal, 2 DECODE(job, 'ANALYST', SAL*1.1, 3 'CLERK', SAL*1.15, 4 'MANAGER', SAL*1.20, 5 SAL) 6 REVISED_SALARY 7 FROM emp; JOB SAL REVISED_SALARY --------- --------- -------------- PRESIDENT 50005000 MANAGER 28503420 MANAGER 24502940 ... 14 rows selected.
  • 41. Using the DECODE Function Display the applicable tax rate for each employee in department 30. SQL> SELECT ename, sal, 2 DECODE(TRUNC(sal/1000, 0), 30, 0.00, 41, 0.09, 52, 0.20, 63, 0.30, 74, 0.40, 85, 0.42, 96, 0.44, 100.45) TAX_RATE 11 FROM emp 12 WHERE deptno = 30;
  • 42. Nesting Functions Single-row functions can be nested to any level. Nested functions are evaluated from deepest level to the least-deep level. F3(F2(F1(col,arg1),arg2),arg3) Step 1 = Result 1 Step 2 = Result 2 Step 3 = Result 3
  • 43. Nesting Functions SQL> SELECTename, 2 NVL(TO_CHAR(mgr),'No Manager') 3 FROMemp 4 WHEREmgr IS NULL; ENAME NVL(TO_CHAR(MGR),'NOMANAGER') ---------- ----------------------------- KING No Manager
  • 44. Summary Use functions to do the following: Perform calculations on data Modify individual data items Manipulate output for groups of rows Alter date formats for display Convert column datatypes
  • 45. Practice Overview Creating queries that require the use of numeric, character, and date functions Using concatenation with functions Writing case-insensitive queries to test the usefulness of character functions Performing calculations of years and months of service for an employee Determining the review date for an employee