{"id":1696,"date":"2018-11-10T11:43:34","date_gmt":"2018-11-10T04:43:34","guid":{"rendered":"http:\/\/www.sqlitetutorial.net\/?page_id=1696"},"modified":"2024-04-16T09:56:45","modified_gmt":"2024-04-16T02:56:45","slug":"sqlite-lag","status":"publish","type":"page","link":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/","title":{"rendered":"SQLite LAG() Function"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will learn how to use the SQLite&nbsp;<code>LAG()<\/code> function to get the value of the preceding row from the current row in the partition.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Introduction to SQLite LAG() function<\/h2>\n\n\n\n<p>SQLite <code>LAG()<\/code> function is a <a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/\">window function<\/a> that allows you to obtain the data of the preceding row at the given physical offset from the current row in the partition.<\/p>\n\n\n\n<p>The following shows the syntax of the <code>LAG()<\/code> function:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">LAG(expression &#91;,offset&#91;, default ]]) OVER (\n    PARTITION BY expression1, expression2,...\n\tORDER BY expression1 &#91;ASC | DESC], expression2,...\n)\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this syntax:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">expression<\/h3>\n\n\n\n<p>It is an expression that is evaluated against the value of the preceding row based on the specified <code>offset<\/code>. The expression must return a single value.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">offset<\/h3>\n\n\n\n<p>Offset is the number of rows from the current row to obtain the value. The default value of the <code>offset<\/code> is 1 if you don&#8217;t specify it explicitly.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">default<\/h3>\n\n\n\n<p>It is the default value to return if the <code>expression<\/code> at <code>offset<\/code> is <code>NULL<\/code>. If you skip the <code>default<\/code>, then the <code>LAG()<\/code> function will return <code>NULL<\/code> if the <code>expression<\/code> evaluates to <code>NULL<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">PARTITION BY clause<\/h3>\n\n\n\n<p>The <code>PARTITION BY<\/code> clause divides the rows of the result set into partitions to which the <code>LAG()<\/code> function applies. If you don&#8217;t specify the <code>PARTITION BY<\/code> clause explicitly, the <code>LAG()<\/code> function will treat the whole result set as a single partition.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">ORDER BY clause<\/h3>\n\n\n\n<p>The <code>ORDER BY<\/code> clause sorts the rows of each partition to which the <code>LAG()<\/code> function applies.<\/p>\n\n\n\n<p>The <code>LAG()<\/code> function is often used to calculate the difference between the values of the current row and the preceding row at a given offset.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SQLite LAG() function examples<\/h2>\n\n\n\n<p>We will use the <code>CustomerInvoices<\/code> view created in the <code><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/\">LEAD()<\/a><\/code> function tutorial for the demonstration.<\/p>\n\n\n\n<p>The following query returns data from the <code>CustomerInvoices<\/code> view:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span>\n\t* \n<span class=\"hljs-keyword\">FROM<\/span>\n\tCustomerInvoices \n<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span>\n\tCustomerId,\n\t<span class=\"hljs-keyword\">Year<\/span>,\n\tTotal;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>The following picture shows the partial output:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"208\" height=\"301\" src=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table.png\" alt=\"SQLite LEAD function sample table\" class=\"wp-image-1692\" srcset=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table.png 208w, https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table-207x300.png 207w\" sizes=\"auto, (max-width: 208px) 100vw, 208px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">1) Using SQLite LAG() function over the result set example<\/h3>\n\n\n\n<p>The following query uses the <code>LAG()<\/code> function to return the difference in invoice amounts for the customer Id 4 over the subsequent years:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span>\n  CustomerId,\n  <span class=\"hljs-keyword\">Year<\/span>,\n  Total,\n  LAG (Total, <span class=\"hljs-number\">1<\/span>, <span class=\"hljs-number\">0<\/span>) <span class=\"hljs-keyword\">OVER<\/span> (<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span>  <span class=\"hljs-keyword\">Year<\/span>) PreviousYearTotal\n<span class=\"hljs-keyword\">FROM<\/span>\n  CustomerInvoices\n<span class=\"hljs-keyword\">WHERE<\/span>\n  CustomerId = <span class=\"hljs-number\">4<\/span>;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Here is the output:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"346\" height=\"111\" src=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LAG-Function-ORDER-BY-clause-example.png\" alt=\"SQLite LAG Function ORDER BY clause example\" class=\"wp-image-1697\" srcset=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LAG-Function-ORDER-BY-clause-example.png 346w, https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LAG-Function-ORDER-BY-clause-example-300x96.png 300w\" sizes=\"auto, (max-width: 346px) 100vw, 346px\" \/><\/figure>\n\n\n\n<p>In this example:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>First, we skipped the <code>PARTITION BY<\/code> clause so the <code>LAG()<\/code> function treated the whole result set as a single partition.<\/li>\n\n\n\n<li>Second, because there is no preceding value available for the first row, the <code>LAG()<\/code> function returned the default value of zero.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">2) Using SQLite LAG() function over partition by example<\/h3>\n\n\n\n<p>The following statement uses the <code>LAG()<\/code> function to return the difference in invoice amounts for every customer over subsequent years:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span>\n  CustomerId,\n  <span class=\"hljs-keyword\">year<\/span>,\n  Total,\n  LAG (Total, <span class=\"hljs-number\">1<\/span>, <span class=\"hljs-number\">0<\/span>) <span class=\"hljs-keyword\">OVER<\/span> (<span class=\"hljs-keyword\">PARTITION<\/span> <span class=\"hljs-keyword\">BY<\/span> CustomerId <span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span> <span class=\"hljs-keyword\">Year<\/span>) PreviousYearTotal\n<span class=\"hljs-keyword\">FROM<\/span>\n  CustomerInvoices;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this example:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>First, the <code>PARTITION BY<\/code> clause divided the rows in the result set by customer Id into partitions.<\/li>\n\n\n\n<li>Second, the <code>ORDER BY<\/code> clause specified in the <code>OVER<\/code> clause specified the order of the rows in each partition by year before the <code>LAG()<\/code> function was applied.<\/li>\n\n\n\n<li>The <code>LAG()<\/code> function is applied to each partition separately and the calculation was restarted for each partition.<\/li>\n<\/ul>\n\n\n\n<p>The following picture shows the partial output:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"353\" height=\"463\" src=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2019\/08\/SQLite-LAG-Function-Over-Partition-Example.png\" alt=\"SQLite LAG Function Over Partition Example\" class=\"wp-image-1919\" srcset=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2019\/08\/SQLite-LAG-Function-Over-Partition-Example.png 353w, https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2019\/08\/SQLite-LAG-Function-Over-Partition-Example-229x300.png 229w\" sizes=\"auto, (max-width: 353px) 100vw, 353px\" \/><\/figure>\n\n\n\n<p>Note that the first row of each partition has a value of zero (0) because it had no LAG value.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Summary<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use the SQLite <code>LAG()<\/code> function to get data of the preceding row from the current row in the partition.<\/li>\n<\/ul>\n<div class=\"helpful-block-content\" data-title=\"\">\n\t<header>\n\t\t<div class=\"wth-question\">Was this tutorial helpful ?<\/div>\n\t\t<div class=\"wth-thumbs\">\n\t\t\t<button\n\t\t\t\tdata-post=\"1696\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/\"\n\t\t\t\tdata-post-title=\"SQLite LAG() Function\"\n\t\t\t\tdata-response=\"1\"\n\t\t\t\tclass=\"wth-btn-rounded wth-yes-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t\tclass=\"feather feather-thumbs-up block w-full h-full\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> Yes <\/span>\n\t\t\t<\/button>\n\n\t\t\t<button\n\t\t\t\tdata-response=\"0\"\n\t\t\t\tdata-post=\"1696\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/\"\n\t\t\t\tdata-post-title=\"SQLite LAG() Function\"\n\t\t\t\tclass=\"wth-btn-rounded wth-no-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> No <\/span>\n\t\t\t<\/button>\n\t\t<\/div>\n\t<\/header>\n\n\t<div class=\"wth-form hidden\">\n\t\t<div class=\"wth-form-wrapper\">\n\t\t\t<div class=\"wth-title\"><\/div>\n\t\t\t\n\t\t\t<textarea class=\"wth-message\"><\/textarea>\n\n\t\t\t<button class=\"btn btn-primary wth-btn-submit\">Send<\/button>\n\t\t\t<button class=\"btn wth-btn-cancel\">Cancel<\/button>\n\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Summary: in this tutorial, you will learn how to use the SQLite&nbsp;LAG() function to get the value of the preceding row from the current row in the partition. Introduction to SQLite LAG() function SQLite LAG() function is a window function that allows you to obtain the data of the preceding row at the given physical [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1659,"menu_order":3,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1696","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SQLite LAG() Function<\/title>\n<meta name=\"description\" content=\"In this tutorial, you will learn how to use the SQLite\u00a0LAG() function to get the value of the preceding row from the current row in the partition.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQLite LAG() Function\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, you will learn how to use the SQLite\u00a0LAG() function to get the value of the preceding row from the current row in the partition.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/\" \/>\n<meta property=\"og:site_name\" content=\"SQLite Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-16T02:56:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/#\/schema\/person\/6d69b968cad0102e30d6694ed8dc6427\"},\"headline\":\"SQLite LAG() Function\",\"datePublished\":\"2018-11-10T04:43:34+00:00\",\"dateModified\":\"2024-04-16T02:56:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/\"},\"wordCount\":467,\"image\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/\",\"url\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/\",\"name\":\"SQLite LAG() Function\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table.png\",\"datePublished\":\"2018-11-10T04:43:34+00:00\",\"dateModified\":\"2024-04-16T02:56:45+00:00\",\"description\":\"In this tutorial, you will learn how to use the SQLite\u00a0LAG() function to get the value of the preceding row from the current row in the partition.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#primaryimage\",\"url\":\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table.png\",\"contentUrl\":\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table.png\",\"width\":208,\"height\":301,\"caption\":\"SQLite LEAD function sample table\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqlitetutorial.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQLite Window Functions\",\"item\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SQLite LAG() Function\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/#website\",\"url\":\"https:\/\/www.sqlitetutorial.net\/\",\"name\":\"SQLite Tutorial\",\"description\":\"A Step-by-step SQLite Tutorial\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sqlitetutorial.net\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/#\/schema\/person\/6d69b968cad0102e30d6694ed8dc6427\",\"name\":\"admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQLite LAG() Function","description":"In this tutorial, you will learn how to use the SQLite\u00a0LAG() function to get the value of the preceding row from the current row in the partition.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/","og_locale":"en_US","og_type":"article","og_title":"SQLite LAG() Function","og_description":"In this tutorial, you will learn how to use the SQLite\u00a0LAG() function to get the value of the preceding row from the current row in the partition.","og_url":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/","og_site_name":"SQLite Tutorial","article_modified_time":"2024-04-16T02:56:45+00:00","og_image":[{"url":"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#article","isPartOf":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/"},"author":{"name":"admin","@id":"https:\/\/www.sqlitetutorial.net\/#\/schema\/person\/6d69b968cad0102e30d6694ed8dc6427"},"headline":"SQLite LAG() Function","datePublished":"2018-11-10T04:43:34+00:00","dateModified":"2024-04-16T02:56:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/"},"wordCount":467,"image":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/","url":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/","name":"SQLite LAG() Function","isPartOf":{"@id":"https:\/\/www.sqlitetutorial.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#primaryimage"},"image":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table.png","datePublished":"2018-11-10T04:43:34+00:00","dateModified":"2024-04-16T02:56:45+00:00","description":"In this tutorial, you will learn how to use the SQLite\u00a0LAG() function to get the value of the preceding row from the current row in the partition.","breadcrumb":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#primaryimage","url":"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table.png","contentUrl":"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-sample-table.png","width":208,"height":301,"caption":"SQLite LEAD function sample table"},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lag\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlitetutorial.net\/"},{"@type":"ListItem","position":2,"name":"SQLite Window Functions","item":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/"},{"@type":"ListItem","position":3,"name":"SQLite LAG() Function"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlitetutorial.net\/#website","url":"https:\/\/www.sqlitetutorial.net\/","name":"SQLite Tutorial","description":"A Step-by-step SQLite Tutorial","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlitetutorial.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.sqlitetutorial.net\/#\/schema\/person\/6d69b968cad0102e30d6694ed8dc6427","name":"admin"}]}},"_links":{"self":[{"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/pages\/1696","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/comments?post=1696"}],"version-history":[{"count":2,"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/pages\/1696\/revisions"}],"predecessor-version":[{"id":3177,"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/pages\/1696\/revisions\/3177"}],"up":[{"embeddable":true,"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/pages\/1659"}],"wp:attachment":[{"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/media?parent=1696"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}