Functions in SQL Server Practical Guide
Functions in SQL Server Practical Guide
Practical Guide
This free book is provided by courtesy of C# Corner and Mindcracker
Network and its authors. Feel free to share this book with your friends
and co-workers. Please do not reproduce, republish, edit or copy this
book.
Sam Hobbs
Editor, C# Corner
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
ABOUT THE AUTHOR
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
Table of Contents
2 String Functions
3 Numeric Functions
3.2 ISNUMERIC(expressions)
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
3.4 CEILING (number)
4 Date/Time Functions
4.1 GetDate ()
4.2 GETUTCDATE()
5 More Functions
5.1 CASE
5.2 COALESCE
5.3 ISNULL
5.4 GROUPING
5.5 ROW_Number()
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
5.6 RANK ()
5.7 DENSE_RANK ()
5.9 ISNUMERIC
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
Introduction of Functions in SQL Server 2005
SQL Server built-in functions are either deterministic or nondeterministic. Functions are
deterministic when they always return the same result any time they are called by using a
specific set of input values. Functions are nondeterministic when they could return different
results every time they are called, even with the same specific set of input values.
Functions that take a character string input and return a character string output use the collation
of the input string for the output. Functions that take no character inputs and return a character
string use the default collation of the current database for the output. Functions that take
multiple character string inputs and return a character string use the rules of collation
precedence to set the collation of the output string
In this Book I am going to explain about some SQL Server 2005 functions with examples. A
function performs an operation and returns a value. A function consists of the function name,
followed by a set of parenthesis that contains any parameter or arguments required by the
function. If a function requires two or more arguments you can separate them with commas.
Here are going to discuss about some string functions, numeric functions and date/time
functions.
Note - I am using my own database table for examples. See database table in figure 1.
Figure 1.
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
String Functions
1. LEN (string) - Returns the number of characters of the specified string expression,
excluding trailing blanks.
Example:
use Vendor
GO
GO
Example:
use Vendor
GO
use Vendor
Go
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
3. RTRIM (string) - RTRIM function to return a character expression after removing
trailing spaces.
Example:
use Vendor
GO
use Vendor
GO
4. LEFT (string, length) - Returns the specified number of characters from the
beginning of the string.
Example:
use Vendor
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
5. RIGTH (string, length) - Returns the specified number of characters from the end
of the string.
Example:
use Vendor
Example:
use Vendor
GO
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
7. REPLACE (search, find, replace) - Returns the search string with all occurrences
of the find string replaced with the replace string.
Example:
use Vendor
GO
use Vendor
GO
8. REVERSE (string) - Returns the string with the character in reverse order.
Example:
use Vendor
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
use Vendor
SELECT REVERSE('Raj')
GO
Example:
use Vendor
GO
use Vendor
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
10. PATINDEX (find, search [, start]) - PATINDEX is useful with text data types; it
can be used in a WHERE clause in addition to IS NULL, IS NOT NULL, and LIKE (the
only other comparisons that are valid on text in a WHERE clause). If either pattern
or expression is NULL, PATINDEX returns NULL when the database compatibility
level is 70. If the database compatibility level is 65 or earlier, PATINDEX returns
NULL only when both pattern and expression are NULL.
Example:
use Vendor
GO
use Vendor
GO
Example:
use Vendor
GO
use Vendor
SELECT LOWER('Raj')
Example:
use Vendor
GO
use Vendor
SELECT UPPER('Raj')
GO
13. SPACE (integer) - Returns the string with the specified number of space
characters (blanks).
Example:
use Vendor
GO
use Vendor
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
SELECT VendorFName + ',' + SPACE(2) + VendorLName
GO
Numeric Functions
1 ROUND (number, length, [function]) - Returns the number rounded to the precision specified
by length. If length is positive, the digits to the right of the decimal point are rounded. If it's
negative the digits to the left of the decimal point are rounded. To truncate the number rather
than round it code a non zero value for function.
Example:
USE Vendor
GO
Example:
USE Vendor
GO
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
3 ABS (number) - Returns the absolute value of number.
Example:
USE Vendor
GO
GO
4 CEILING (number) - Returns the smallest integer that is greater than or equal to
the number.
Example:
USE Vendor
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
SELECT CEILING($123.45),CEILING($-123.45), CEILING($0.0)
GO
Example:
USE Vendor
GO
GO
Example:
USE Vendor
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
SET @h = 5
SET @r = 1
GO
Example:
USE Vendor
GO
BEGIN
SELECT SQRT(@myvalue)
END
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
8 RAND ([seed]) - Returns a random float value from 0 through 1.
Seed
Is an integer expression (tinyint, smallint, or int) that specifies the seed value. If seed is
not specified, Microsoft SQL Server 2000 assigns a seed value at random. For a given
seed value, the result returned is always the same.
Example:
USE Vendor
GO
SET @counter = 1
SET NOCOUNT ON
END
GO
Date/Time Functions
1 GetDate () - Returns the current system date and time in the Microsoft SQL Server
standard internal format for date time values.
Example:
USE Vendor
GO
SELECT GetDate()
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
GO
2 GETUTCDATE() - Returns the current UTC date and time based on the system's
clock and time zone setting. UTC (Universal Time Coordination) is the same as
Greenwich Mean Time.
Example:
USE Vendor
GO
SELECT GETUTCDATE()
GO
Example:
USE Vendor
GO
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
4 MONTH (date) - Returns the month as an integer.
Example:
USE Vendor
GO
GO
Example:
USE Vendor
GO
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
6 DATENAME (datepart, date) - Returns an integer representing the specified date part of the
specified date.
Example:
USE Vendor
GO
GO
7 DATEPART(datepart, date)
Is the parameter that specifies the part of the date to return? The table lists date
parts and abbreviations recognized by Microsoft SQL Server.
Datepart Abbreviations
quarter qq, q
month mm, m
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
dayofyear dy, y
day dd, d
week wk, ww
weekday dw
hour hh
minute mi, n
second ss, s
millisecon ms
d
The week (wk, ww) datepart reflects changes made to SET DATEFIRST. January 1 of any year
defines the starting number for the week datepart, for example: DATEPART(wk, 'Jan 1, xxxx') =
1, where xxxx is any year.
The weekday (dw) datepart returns a number that corresponds to the day of the week, for
example: Sunday = 1, Saturday = 7. The number produced by the weekday datepart depends on
the value set by SET DATEFIRST, which sets the first day of the week.
Date
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
If you specify only the last two digits of the year, values less than or equal to the last two digits
of the value of the two digit year cutoff configuration option are in the same century as the
cutoff year. Values greater than the last two digits of the value of this option are in the century
that precedes the cutoff year. For example, if two digit year cutoff is 2049 (default), 49 is
interpreted as 2049 and 2050 is interpreted as 1950. To avoid ambiguity, use four-digit years.
For more information about specifying time values, see Time Formats. For more information
about specifying dates, see datetime and smalldatetime.
Example :
USE Vendor
GO
GO
8 DATEADD (datepart, number, date) - Returns the date that results from adding
the specified number of datepart units to the date.
Example -
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
USE Vendor
GO
GO
Example:
USE Vendor
GO
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
Example:
USE Vendor
GO
SELECT ISDATE(@datestring)
GO
More Functions
1 CASE - Evaluate a list of conditions and returns one of multiple possible return expressions.
The searched case function evaluates a set of boolean expressions to determine the
result.
Syntax:
CASE input_expression
[...n]
[
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
ELSE else_result_expression
END
CASE
[...n]
ELSE else_result_expression
END
Example:
use Vendor
GO
CASE VendorId
END AS PrintMessage
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
FROM Vendor
Syntax:
Example:
use Vendor
GO
FROM Vendor
Syntax:
Example:
use Vendor
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
FROM Vendor
GO
Example -
Use Vendor
GO
FROM advance
GROUP BY royality
WITH ROLLUP
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
5 ROW_Number() - Returns the sequential number of a row within a partition of a
result set, starting at 1 for the first row in each partition
Note: The ORDER BY in the OVER clause orders ROW_NUMBER. If you add an ORDER
BY clause to the SELECT statement that orders by a column(s) other than 'Row
Number' the result set will be ordered by the outer ORDER BY.
Example:
Use Vendor
GO
FROM Vendor
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
6 RANK () - Returns the rank of each row within the partition of a result set. The rank of a row is
one plus the number of ranks that come before the row in question.
Divides the result set produced by the FROM clause into partitions to which the RANK function is
applied. For the syntax of PARTITION BY, see OVER Clause (Transact-SQL).
Determines the order in which the RANK values are applied to the rows in a partition. For more
information, see ORDER BY Clause (Transact-SQL). An integer cannot represent a column when
the < order_by_clause > is used in a ranking function.
Example:
Use Vendor
GO
GO
7 DENSE_RANK () - Returns the rank of rows within the partition of a result set,
without any gaps in the ranking. The rank of a row is one plus the number of distinct
ranks that come before the row in question.
Divides the result set produced by the FROM clause into partitions to which the DENSE_RANK
function is applied. For the syntax of PARTITION BY, see OVER Clause (Transact-SQL).
Determines the order in which the DENSE_RANK values are applied to the rows in a partition. An
integer cannot represent a column in the <order_by_clause> that is used in a ranking function.
Example :
Use Vendor
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
GO
GO
Arguments: integer_expression
Is a positive integer constant expression that specifies the number of groups into which each
partition must be divided? integer_expression can be of type int, or bigint.
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
<partition_by_clause>
Divides the result set produced by the FROM clause into partitions to which the RANK function is
applied. For the syntax of PARTITION BY, see OVER Clause (Transact-SQL).
Determines the order in which the NTILE values are assigned to the rows in a partition. For more
information, see ORDER BY Clause (Transact-SQL). An integer cannot represent a column when
the <order_by_clause> is used in a ranking function.
Example :
Use Vendor
GO
FROM Vendor
GO
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.
select empname,STUFF(empname,4,3,'f') from EmpDetails
Result:
empname (New)
jagatheesan jagfeesan
prabhakar prafkar
sibi sibf
Rajesh Rajf
siva sivf
null nulf
ISNUMERIC: This function Returns 1 if the value are numeric & zero when values are not
numeric.
EXAMPLE :
Result
new
0
0
0
Summary
In this book we have learned the some important functions like Built-in functions in Sql Server of
Miscellaneous functions. Where we have seen the Rank, Dense rank methods.
©2014 C# CORNER.
SHARE THIS DOCUMENT AS IT IS. PLEASE DO NOT REPRODUCE, REPUBLISH, CHANGE OR COPY.