SQL Functions
SQL Functions
SQL Functions
DR. RICHA SHARMA
L O C K H AV E N U N I V E R S I T Y
1
Introduction
Retrieving information from tables often requires data
manipulations, such as decomposing any attribute into small
units (e.g. date) or working with a particular case or part of text.
SQL functions are very useful to do such data manipulations
without having the need to add any additional attribute!
2
Few Examples
Mathematical calculations:
SELECT 2*5-4
Joining/concatenating strings:
SELECT ‘Good' + ' ' + ‘Morning!’
3
String Functions
Function Name Function Desription
Concatenation function [ + in SQL Server, Join two or more strings
|| in Oracle, concat() in MySQL ]
Trim [ TRIM() ] { LTRIM() and RTRIM() too! ] Remove leading and trailing
spaces from a string
Source: https://www.w3schools.com/sql/sql_ref_sqlserver.asp 4
Examples
Write a query to select employee title, first name and last name
in upper case from ‘Emp’ table – all these three attributes
combined as one column named as ‘Employee Name’.
select Emp_title + EMP_FNAME + ' ' + EMP_LNAME as
EMP_NAME from EMP;
Write a query to get a substring of length 10 starting from
position 1 on product description attribute from the product table.
The extracted substrings should be unique!
select distinct substring(product.P_DESCRIPT, 1, 10)
from PRODUCT;
Write a query to find maximum size or length of the customer last
name from customer table.
select max(len(CUS_LNAME)) from customer;
5
Numeric Functions
Function Name Function Desription
Basic numeric operators [ + , - , *, / , %, PI() ]
Abs(x) Returns absolute value of a number
Source: https://www.w3schools.com/sql/sql_ref_sqlserver.asp 6
Examples
Let's say we have a table of racer ids and times in minutes for a
boat ‘race’ . How can we convert minutes to hours and minutes?
Boat_id Elapsed_time
123 234
111 321
333 275
Write a query to find the total price of the products ordered from
‘line’ table rounding the price to two decimal places.
select round(sum(line.LINE_PRICE),2) from line;
7
Date/Time Functions
Date is stored internally as an integer value equal to the number
of days since December 31, 1899. Because DATE values are
stored as integers, we can use them in arithmetic expressions
using date values!
Expressed as string
Dates are specified as quoted character strings!
Few date functions next!!
Select emp_num, year(emp_hire_date) as ‘Year of Hiring’
from emp where year(emp_hire_date) > 1990
Select emp_num, emp_hire_date, dateadd(month, 6,
emp_hire_date) from emp
Select emp_num, datediff(year, Emp_hire_date, getdate())
from employee where year(emp_hire_date) >=‘1991’
8
Date/Time Functions
Function Name Function Desription
getdate() or Returns today’s date
current_timestamp in MySQL
Sysdate() - Oracle
Source: https://www.w3schools.com/sql/sql_ref_sqlserver.asp 9
Conversion Functions
Conversion function in SQL Server is ‘convert’ function specified
as:
CONVERT(data_type(length), expression, format)
Example:
SELECT CONVERT(int, 55.75)
SELECT CONVERT(float, '55.75')
10
Cast Functions
Cast function in SQL Server converts a value (of any type) into a
specified datatype:
CAST(expression AS datatype(length))
Example:
SELECT CAST(25.65 AS int)
SELECT CAST(25.65 AS varchar)
SELECT CAST('25.65' AS float)
SELECT CAST('2023-10-02' AS datetime)
11
Regular Expressions
We use LIKE to perform some simple pattern matching.
Example:
SELECT emp_num, emp_lname, emp_phone
FROM Emp WHERE emp_lname LIKE 'W%'
https://learn.microsoft.com/en-us/sql/ssms/scripting/search-text-with-regular-expressions?
13
view=sql-server-ver16
Regular Expressions (ctd.)
Few more patterns:
14
Relational Set Operations
Relational databases support set operations too – these
operations are equivalent to logical AND / OR / NOT
operators!
16
Relational Set Operations (ctd.)
If we are working with the same table, use of the logical
operators is more convenient!
17
Relational Set Operations (ctd.)