EDUCBA

EDUCBA

MENUMENU
  • Free Tutorials
  • Free Courses
  • Certification Courses
  • 360+ Courses All in One Bundle
  • Login

SQL LAG()

Home » Data Science » Data Science Tutorials » SQL Tutorial » SQL LAG()

SQL LAG()

Introduction to SQL LAG()

Introduced in SQL server 2012, the LAG() function is used to access a row at a particular offset which is before the current row. You can access the data of the previous rows in the current row. So, it can be useful if you want to do some calculations or you need a reference to the previous values. It is basically an analytical function using which we can compare values of the current row with the previous row.

Syntax

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

The following shows the common syntax of a LAG() in SQL Server:

LAG(return_value ,offset [,default])
OVER (
[PARTITION BY partition_expression, ... ] ORDER BY sort_expression [ASC or DESC], ...
)

In the above expression:

Step 1: We use the LAG() function as a part of the SELECT statement. The LAG() function takes 3 parameters:

  • Return_value: Based on the offset specified the value will be returned. It can be any expression that returns a scalar value or it can even be just the name of the column. Make sure it is not an analytical function. This is a required parameter
  • Offset: This determines the number of rows you want to lag behind to fetch the data. This is an optional parameter and by default, it will lag behind one row. It can be a subquery, column, or any expression which is evaluated to be a positive integer or can be cast or converted to a bigint. Just make sure that you don’t use analytical functions or negative values as an offset.
  • Default: The default value is returned if the offset goes out of the range of the partition or it is out of scope. It can be any expression that returns a scalar value or it can even be just the name of the column. Make sure it is not an analytical function. This is an optional parameter and by default NULL value will be returned if no data is found.

Step 2: The second part of the function in which we specify how do we present the previous rows data using OVER clause and it has two parts:

  • PARTITION BY clause is optional and it is used to group the data obtained using FROM clause using If this is not specified then the entire result set is considered as a single group
  • ORDER BY clause is required and it sorts the data using sort_expression in ASC or DESC format. If partition_expressionis specified then the ORDER BY clause determines the order of data within the partition.

Step 3: The return type of the expression is the data type of the specified return_value. NULL is returned if default value is set to NULL and the expression is nullable.

Popular Course in this category
SQL Training Program (7 Courses, 8+ Projects)7 Online Courses | 8 Hands-on Projects | 73+ Hours | Verifiable Certificate of Completion | Lifetime Access
4.5 (5,285 ratings)
Course Price

View Course

Related Courses
JDBC Training (6 Courses, 7+ Projects)PHP Training (5 Courses, 3 Project)Windows 10 Training (4 Courses, 4+ Projects)PL SQL Training (4 Courses, 2+ Projects)Oracle Training (14 Courses, 8+ Projects)
  • LAG() function is non-deterministic as opposed to deterministic functions which return the same result at any time they are called this function may return a different results at the different times even if the database state remains the same.

Examples to Implement SQL LAG()

Below are the examples to Implement SQL LAG():

1. Simple example with LAG() function

Code:

SELECT name, gender, salary,
LAG(salary)OVER (ORDER BY salary)
FROM Employee

Output:

SQL LAG() - 1

Explanation: This is the most basic example in which we select name, gender, and salary from the Employee table and used the LAG function to get the salary of the previous person in the LAG column. As you can see Mark gets NULL because there is no previous salary and also, we have not specified any default value, and offset is 1 so we get the immediately previous value.

2. A bit complex example with LAG() function

Code:

SELECT name, gender, salary,
LAG(salary, 2,-1)OVER (PARTITION BY gender ORDERBY salary)AS LAG
FROM Employee

Output:

SQL LAG() - 2

Explanation: In this example, we select name, gender, and salary from the Employee table and used LAG function to get the salary of the previous person in LAG column as done in the previous example but also, we partition the data using the gender column.So, the LAG function works within the confines of the partition. What we have done is we have set the offset to 2 and default value to -1. As we can see in the example for Pam and Sara we cannot fetch the values of previous rows which is lags 2 rows so we get the default value -1 and similarly in the Male partition we get the result.

3. Comparison of values between years

Code:

SELECT BusinessEntityID,YEAR(QuotaDate)AS YearOfSale,SalesQuota AS CurrentYearQuota,
LAG(SalesQuota, 1,0)OVER (ORDERBY YEAR (QuotaDate)) AS PreviousYearQuota
FROM Sales.SalesPersonQuotaHistory
WHERE BusinessEntityID = 275 and YEAR(QuotaDate)IN('2011','2012');

Output:

Comparison of values between years

Explanation: As we can see in this example LAG function is used to compare the sales of an employee in the current year and the previous year and if there is no lag then we have returned 0.00.

4. Comparison of values within partitions

Code:

SELECT BusinessEntityID,TerritoryName,SalesYTD as SalesYearToDate,
LAG(SalesYTD, 1,0)OVER (PARTITION BY TerritoryName ORDER BY YEAR(SalesYTD))AS PreviousRepSales
FROM Sales.vSalesPerson
WHERE TerritoryName IN(N'Northwest',N'Canada')
ORDER BY TerritoryName;

Output:

Comparison of values within partitions

Explanation: In this example, we compare the year-to-date sales between employees using the PARTITION BY clause which is used to divide the result set by TerritoryName. The computation of each partition is done separately and then the ORDER BY clause is used to order the row in each partition. The ORDER BY clause in SELECT statement sorts the whole result set.

5. Using arbitrary expressions

Code:

CREATE TABLE A(p int, q int, r int);
GO
INSERT INTO A VALUES (2, 1,-3),(3, 4, 4),(1, 3,NULL),(5, 7, 2),(4, 1,NULL),(6, 5, 3);
SELECT q, r,
LAG(2*r, q*(SELECT MIN(q)FROM A),-r/2.0)OVER (ORDER BY p)AS i
FROM A;

Output:

Using Arbitrary Expressions

Explanation: In the above example, we have demonstrated a variety of arbitrary expressions using LAG function.So, we have created a table and inserted values and also used SELECT and LAG functions. As you can see the return value, offset and default value all are using expressions instead of just column names or scalar values.

Conclusion

Hopefully, now you know what LAG function is in the SQL server and how it is used to analyze previous rows in the query using physical offsets to give us useful insights.

Recommended Articles

This is a guide to SQL LAG(). Here we discuss an introduction, syntax, parameters and examples to implement with proper outputs. You can also go through our other related articles to learn more –

  1. First Normal Form
  2. SQL Server Data Types
  3. SQL Administration
  4. Cheat Sheet SQL

SQL Training Program (7 Courses, 8+ Projects)

7 Online Courses

8 Hands-on Projects

73+ Hours

Verifiable Certificate of Completion

Lifetime Access

Learn More

0 Shares
Share
Tweet
Share
Primary Sidebar
SQL Tutorial
  • Functions
    • SQL Date Function
    • SQL String Functions
    • SQL Compare String
    • SQL Window Functions
    • SQL Timestamp
    • SQL TO_DATE()
    • SQL DATEADD()
    • ANY in SQL
    • LIKE Query in SQL
    • BETWEEN in SQL
    • LTRIM() in SQL
    • TOP in SQL
    • SQL Select Top
    • Merge SQL
    • SQL TRUNCATE()
    • SQL UNION
    • SQL ALL
    • SQL INTERSECT
    • SQL Alias
    • SQL Server Substring
    • CUBE in SQL
    • SQL RANK()
    • SQL CTE
    • SQL LAG()
    • SQL MID
    • SQL avg()
    • SQL WEEK
    • SQL DELETE
    • SQL DATEPART()
    • SQL DECODE()
    • SQL DENSE_RANK()
    • SQL NTILE()
    • SQL NULLIF()
    • SQL Stuff
    • SQL Ceiling
    • SQL EXISTS
    • SQL LEAD()
    • SQL ROW_NUMBER
    • SQL Server Replace
    • T-SQL INSERT
    • SQL Ranking Function
  • Basic
    • What is SQL
    • Careers in SQL
    • Careers in SQL Server
    • IS SQL Microsoft?
    • SQL Management Tools
    • What is SQL Developer
    • Uses of SQL
    • How to Install SQL Server
    • What is SQL Server
    • Database in SQL
    • SQL Data Types
    • SQL Keywords
    • Composite Key in SQL
    • SQL Constraints
    • Transactions in SQL
    • First Normal Form
    • SQL Server Data Types
    • SQL Administration
    • SQL Variables
    • Cheat sheet SQL
  • Operators
    • SQL Operators
    • SQL Arithmetic Operators
    • SQL Logical Operators
    • SQL String Operators
    • Ternary Operator in SQL
  • Commands
    • SQL Commands
    • SQL Alter Command
    • SQL Commands Update
    • SQL DML Commands
    • FETCH in SQL
  • Clause
    • SQL Clauses
    • SQL IN Operator
    • SQL LIKE Clause
    • SQL NOT Operator
    • SQL Minus
    • SQL WHERE Clause
    • SQL with Clause
    • SQL HAVING Clause
    • GROUP BY clause in SQL
    • ORDER BY Clause in SQL
    • SQL ORDER BY CASE
    • SQL ORDER BY DATE
    • SQL ORDER BY Alphabetical
    • SQL ORDER BY Ascending
    • SQL GROUP BY Month
    • SQL GROUP BY Multiple Columns
    • SQL GROUP BY DAY
    • SQL GROUPING SETS
  • Queries
    • SQL Insert Query
    • SQL SELECT Query
    • SQL SELECT RANDOM
    • SQL Except Select
    • SQL Subquery
    • SQL SELECT DISTINCT
    • SQL WITH AS Statement
  • Keys
    • SQL Keys
    • Primary Key in SQL
    • Foreign Key in SQL
    • Unique Key in SQL
    • Alternate Key in SQL
  • Joins
    • Join Query in SQL
    • Types of Joins in SQL
    • Types of Joins in SQL Server
    • SQL Inner Join
    • SQL Join Two Tables
    • SQL Delete Join
    • SQL Left Join
    • SQL Right Join
    • SQL Cross Join
    • SQL Outer Join
    • SQL Full Join
    • SQL Self Join
    • Natural Join SQL
    • SQL Multiple Join
  • Advanced
    • Aggregate Functions in SQL
    • IF ELSE Statement in SQL
    • SQL CASE Statement
    • SQL While Loop
    • SQL INSTR()
    • What is Procedure in SQL
    • Stored Procedure in SQL?
    • SQL Server Constraints
    • SQL DELETE ROW
    • Column in SQL
    • Table in SQL
    • SQL Virtual Table
    • SQL Merge Two Tables
    • SQL Table Partitioning
    • SQL Temporary Table
    • SQL Clone Table
    • SQL Rename Table
    • SQL LOCK TABLE
    • SQL Mapping
    • Cursors in SQL
    • AND in SQL
    • Wildcard in SQL
    • SQL FETCH NEXT
    • SQL Views
    • Triggers in SQL
    • SQL UPDATE Trigger
    • SQL AFTER UPDATE Trigger
    • SQL Update Statement
    • SQL DROP TRIGGER
    • Views in MySQL
    • SQL COMMIT
    • Distinct Keyword in SQL
    • PARTITION BY in SQL
    • SQL Set Operators
    • SQL UNION ALL
    • Metadata in SQL
    • SQL Bulk Insert
    • Array in SQL
    • SQL REGEXP
    • JSON in SQL
    • SQL For loop
    • EXPLAIN in SQL
    • SQL Cluster
    • SQL Backup
    • SQL Pattern Matching
    • SQL Users
    • ISNULL SQL Server
    • SQL Import CSV
  • Interview Questions
    • SQL Interview Questions
    • Advance SQL Interview Questions
    • SQL Joins Interview Questions
    • SQL Server Interview Questions

Related Courses

JDBC Training Course

PHP course

Windows 10 Training

SQL Course Training

PL/SQL Certification Courses

Oracle Certification Courses

Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • Corporate Training
  • Certificate from Top Institutions
  • Contact Us
  • Verifiable Certificate
  • Reviews
  • Terms and Conditions
  • Privacy Policy
  •  
Apps
  • iPhone & iPad
  • Android
Resources
  • Free Courses
  • Database Management
  • Machine Learning
  • All Tutorials
Certification Courses
  • All Courses
  • Data Science Course - All in One Bundle
  • Machine Learning Course
  • Hadoop Certification Training
  • Cloud Computing Training Course
  • R Programming Course
  • AWS Training Course
  • SAS Training Course

© 2020 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you
Book Your One Instructor : One Learner Free Class

Let’s Get Started

This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our Privacy Policy

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA Login

Forgot Password?

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you

Special Offer - SQL Training Program (7 Courses, 8+ Projects) Learn More