{"id":1690,"date":"2018-11-10T11:07:45","date_gmt":"2018-11-10T04:07:45","guid":{"rendered":"http:\/\/www.sqlitetutorial.net\/?page_id=1690"},"modified":"2024-04-16T10:20:36","modified_gmt":"2024-04-16T03:20:36","slug":"sqlite-lead","status":"publish","type":"page","link":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/","title":{"rendered":"SQLite LEAD() Function"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will learn how to use the SQLite&nbsp;<code>LEAD()<\/code> function to get the value of the following row from the current row in the partition.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Introduction to SQLite LEAD() function<\/h2>\n\n\n\n<p>SQLite <code>LEAD()<\/code> function is a <a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/\">window function<\/a> that allows you to access the data of the following row at the given physical offset from the current row in the partition.<\/p>\n\n\n\n<p>Here&#8217;s the syntax of the <code>LEAD()<\/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\">LEAD(expression &#91;,offset&#91;, default ]]) \nOVER (\n    PARTITION BY expression1, expression2,...\n    ORDER BY expression1 &#91;ASC | DESC], expression2,...\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 a row based on the specified offset. It must return a single value.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">offset<\/h3>\n\n\n\n<p>It is the number of rows forwarding 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 in case the <code>expression<\/code> at <code>offset<\/code> is NULL. If you don&#8217;t specify <code>default<\/code>, then the <code>LEAD()<\/code> function returns NULL.<\/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 distributes the rows of the result set into partitions to which the <code>LEAD()<\/code> function applies. If you don&#8217;t explicitly specify the <code>PARTITION BY<\/code> clause, the function treats 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 specifies the order of rows in each partition to which the <code>LEAD()<\/code> function applies.<\/p>\n\n\n\n<p>In practice, you often use the <code>LEAD()<\/code> function to calculate the difference between the values of the current and subsequent rows.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SQLite LEAD() function examples<\/h2>\n\n\n\n<p>We create a view named <code>CustomerInvoices<\/code> based on the <code>invoices<\/code> table in the <a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-sample-database\/\">sample database<\/a> for the demonstration:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"174\" height=\"224\" src=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/invoices.png\" alt=\"\" class=\"wp-image-1565\"\/><\/figure>\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\">CREATE<\/span> <span class=\"hljs-keyword\">VIEW<\/span> CustomerInvoices\n<span class=\"hljs-keyword\">AS<\/span>\n<span class=\"hljs-keyword\">SELECT<\/span>\n\tCustomerId,\n\tstrftime(<span class=\"hljs-string\">'%Y'<\/span>,InvoiceDate) <span class=\"hljs-keyword\">Year<\/span>,\n\t<span class=\"hljs-keyword\">SUM<\/span>( total ) Total\n<span class=\"hljs-keyword\">FROM<\/span>\n\tinvoices\n\t<span class=\"hljs-keyword\">GROUP<\/span> <span class=\"hljs-keyword\">BY<\/span> CustomerId, strftime(<span class=\"hljs-string\">'%Y'<\/span>,InvoiceDate);<\/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 statement queries data against the <code>CustomerInvoices<\/code> view:<\/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  *\n<span class=\"hljs-keyword\">FROM<\/span>\n  CustomerInvoices\n<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span>\n  CustomerId,\n  <span class=\"hljs-keyword\">year<\/span>,\n  Total;<\/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>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 the LEAD() function over the result set example<\/h3>\n\n\n\n<p>The following query uses the <code>LEAD()<\/code> function to return the difference in invoice amounts for a specific 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\tCustomerId,\n\t<span class=\"hljs-keyword\">Year<\/span>,\n\tTotal,\n\t<span class=\"hljs-keyword\">LEAD<\/span> ( 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> ) NextYearTotal\n<span class=\"hljs-keyword\">FROM<\/span>\n\tCustomerInvoices \n<span class=\"hljs-keyword\">WHERE<\/span>\n\tCustomerId = <span class=\"hljs-number\">1<\/span>;\n<\/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>Here is the output:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"314\" height=\"105\" src=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-with-ORDER-BY-example.png\" alt=\"SQLite LEAD function with ORDER BY example\" class=\"wp-image-1691\" srcset=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-with-ORDER-BY-example.png 314w, https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-with-ORDER-BY-example-300x100.png 300w\" sizes=\"auto, (max-width: 314px) 100vw, 314px\" \/><\/figure>\n\n\n\n<p>In this example:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>First, we did not use the\u00a0<code>PARTITION BY<\/code> clause so the <code>LEAD()<\/code> function treated the whole result set derived from the <code>FROM<\/code> clause as a single partition.<\/li>\n\n\n\n<li>Second, since the last row has no lead value, the function returned the default value of zero.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3) Using the LEAD() function over partition by example<\/h3>\n\n\n\n<p>The following example uses the <code>LEAD()<\/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-5\" 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\tCustomerId,\n\t<span class=\"hljs-keyword\">Year<\/span>,\n\tTotal,\n\t<span class=\"hljs-keyword\">LEAD<\/span> ( Total, <span class=\"hljs-number\">1<\/span>, <span class=\"hljs-number\">0<\/span> ) <span class=\"hljs-keyword\">OVER<\/span> (\n\t\t<span class=\"hljs-keyword\">PARTITION<\/span> <span class=\"hljs-keyword\">BY<\/span> CustomerId \n\t\t<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span> <span class=\"hljs-keyword\">Year<\/span> \n\t) NextYearTotal \n<span class=\"hljs-keyword\">FROM<\/span>\n\tCustomerInvoices;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><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=\"319\" height=\"307\" src=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-with-PARTITION-BY-example.png\" alt=\"SQLite LEAD function with PARTITION BY example\" class=\"wp-image-1693\" srcset=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-with-PARTITION-BY-example.png 319w, https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-LEAD-function-with-PARTITION-BY-example-300x289.png 300w\" sizes=\"auto, (max-width: 319px) 100vw, 319px\" \/><\/figure>\n\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 partitioned the rows in the result set by customer Id.<\/li>\n\n\n\n<li>Second, the <code>ORDER BY<\/code> clause specified in the <code>OVER<\/code> clause sorted the rows in each partition by year before the<code>LEAD()<\/code> function was applied.<\/li>\n\n\n\n<li>Third, the <code>LEAD()<\/code> function\u00a0is applied separately to each partition and the calculation restarted for each partition.<\/li>\n<\/ul>\n\n\n\n<p>Notice that the last row of each partition has a value of zero (0) because it had no lead 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 <code>LEAD()<\/code> function to obtain data of the following 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=\"1690\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/\"\n\t\t\t\tdata-post-title=\"SQLite LEAD() 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=\"1690\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/\"\n\t\t\t\tdata-post-title=\"SQLite LEAD() 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>In this tutorial, you will learn how to use the SQLite\u00a0LEAD() function to get the value of the following row from the current row in the partition.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1659,"menu_order":5,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1690","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 LEAD() Function<\/title>\n<meta name=\"description\" content=\"You will learn how to use the SQLite\u00a0LEAD() function to get the value of the following 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-lead\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQLite LEAD() Function\" \/>\n<meta property=\"og:description\" content=\"You will learn how to use the SQLite\u00a0LEAD() function to get the value of the following row from the current row in the partition.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/\" \/>\n<meta property=\"og:site_name\" content=\"SQLite Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-16T03:20:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/invoices.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-lead\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/#\/schema\/person\/6d69b968cad0102e30d6694ed8dc6427\"},\"headline\":\"SQLite LEAD() Function\",\"datePublished\":\"2018-11-10T04:07:45+00:00\",\"dateModified\":\"2024-04-16T03:20:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/\"},\"wordCount\":457,\"image\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/invoices.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/\",\"url\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/\",\"name\":\"SQLite LEAD() Function\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/invoices.png\",\"datePublished\":\"2018-11-10T04:07:45+00:00\",\"dateModified\":\"2024-04-16T03:20:36+00:00\",\"description\":\"You will learn how to use the SQLite\u00a0LEAD() function to get the value of the following row from the current row in the partition.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/#primaryimage\",\"url\":\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/invoices.png\",\"contentUrl\":\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/invoices.png\",\"width\":174,\"height\":224},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/#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 LEAD() 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 LEAD() Function","description":"You will learn how to use the SQLite\u00a0LEAD() function to get the value of the following 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-lead\/","og_locale":"en_US","og_type":"article","og_title":"SQLite LEAD() Function","og_description":"You will learn how to use the SQLite\u00a0LEAD() function to get the value of the following row from the current row in the partition.","og_url":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/","og_site_name":"SQLite Tutorial","article_modified_time":"2024-04-16T03:20:36+00:00","og_image":[{"url":"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/invoices.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-lead\/#article","isPartOf":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/"},"author":{"name":"admin","@id":"https:\/\/www.sqlitetutorial.net\/#\/schema\/person\/6d69b968cad0102e30d6694ed8dc6427"},"headline":"SQLite LEAD() Function","datePublished":"2018-11-10T04:07:45+00:00","dateModified":"2024-04-16T03:20:36+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/"},"wordCount":457,"image":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/invoices.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/","url":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/","name":"SQLite LEAD() Function","isPartOf":{"@id":"https:\/\/www.sqlitetutorial.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/#primaryimage"},"image":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/invoices.png","datePublished":"2018-11-10T04:07:45+00:00","dateModified":"2024-04-16T03:20:36+00:00","description":"You will learn how to use the SQLite\u00a0LEAD() function to get the value of the following row from the current row in the partition.","breadcrumb":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/#primaryimage","url":"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/invoices.png","contentUrl":"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/invoices.png","width":174,"height":224},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/sqlite-lead\/#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 LEAD() 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\/1690","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=1690"}],"version-history":[{"count":3,"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/pages\/1690\/revisions"}],"predecessor-version":[{"id":3194,"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/pages\/1690\/revisions\/3194"}],"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=1690"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}