{"id":1793,"date":"2018-09-17T08:26:14","date_gmt":"2018-09-17T15:26:14","guid":{"rendered":"https:\/\/sqltutorial.org\/?page_id=1793"},"modified":"2025-02-08T05:20:00","modified_gmt":"2025-02-08T12:20:00","slug":"sql-partition-by","status":"publish","type":"page","link":"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/","title":{"rendered":"SQL PARTITION BY"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you&#8217;ll learn how to use the SQL <code>PARTITION BY<\/code> clause to divide a result into multiple partitions on which a window function can operate.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='introduction-to-the-sql-partition-by-clause'>Introduction to the SQL PARTITION BY clause <a href=\"#introduction-to-the-sql-partition-by-clause\" class=\"anchor\" id=\"introduction-to-the-sql-partition-by-clause\" title=\"Anchor for Introduction to the SQL PARTITION BY clause\">#<\/a><\/h2>\n\n\n\n<p>In SQL, a <a href=\"https:\/\/www.sqltutorial.org\/sql-window-functions\/\">window function<\/a> allows you to calculate across table rows that are somehow related to the current row.<\/p>\n\n\n\n<p>A window function uses the <code>OVER<\/code> clause to define the window or a set of rows on which a window function operates. The <code>OVER<\/code> clause includes optional <code>PARTITION BY<\/code> and <code>ORDER BY<\/code> clause.<\/p>\n\n\n\n<p>Here&#8217;s the basic syntax of a window function that uses <code>PARTITION BY<\/code> and <code>ORDER BY<\/code> clauses:<\/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\">window_function (expression) OVER (\n  PARTITION BY\n    column1,\n    column2\n  ORDER BY\n    column3,\n    column4\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>If you omit the <code>PARTION BY<\/code> clause, the window function treats the whole result set as a single partition.<\/p>\n\n\n\n<p>When you use the <code>PARTITION BY<\/code> clause, it divides the result set into multiple partitions. The window function will operate on each partition independently.<\/p>\n\n\n\n<p>Suppose we have the following <code>salary_reports<\/code> table:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>state<\/th><th>job<\/th><th>salary<\/th><\/tr><\/thead><tbody><tr><td>California<\/td><td>IT<\/td><td>150000.00<\/td><\/tr><tr><td>California<\/td><td>Marketing<\/td><td>130000.00<\/td><\/tr><tr><td>Texas<\/td><td>IT<\/td><td>100000.00<\/td><\/tr><tr><td>Texas<\/td><td>Marketing<\/td><td>80000.00<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary>SQL script for creating the salary_reports table<\/summary><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\">DROP<\/span> <span class=\"hljs-keyword\">TABLE<\/span> <span class=\"hljs-keyword\">IF<\/span> <span class=\"hljs-keyword\">EXISTS<\/span> salary_reports;\n\n<span class=\"hljs-keyword\">CREATE<\/span> <span class=\"hljs-keyword\">TABLE<\/span> salary_reports (\n  state <span class=\"hljs-built_in\">varchar<\/span>(<span class=\"hljs-number\">255<\/span>) <span class=\"hljs-keyword\">NOT<\/span> <span class=\"hljs-literal\">NULL<\/span>,\n  job <span class=\"hljs-built_in\">varchar<\/span>(<span class=\"hljs-number\">255<\/span>) <span class=\"hljs-keyword\">NOT<\/span> <span class=\"hljs-literal\">NULL<\/span>,\n  salary <span class=\"hljs-built_in\">DEC<\/span>(<span class=\"hljs-number\">11<\/span>, <span class=\"hljs-number\">2<\/span>)\n);\n\n<span class=\"hljs-keyword\">INSERT<\/span> <span class=\"hljs-keyword\">INTO<\/span>\n  salary_reports (state, job, salary)\n<span class=\"hljs-keyword\">VALUES<\/span>\n  (<span class=\"hljs-string\">'California'<\/span>, <span class=\"hljs-string\">'IT'<\/span>, <span class=\"hljs-number\">150000<\/span>),\n  (<span class=\"hljs-string\">'California'<\/span>, <span class=\"hljs-string\">'Marketing'<\/span>, <span class=\"hljs-number\">130000<\/span>),\n  (<span class=\"hljs-string\">'Texas'<\/span>, <span class=\"hljs-string\">'IT'<\/span>, <span class=\"hljs-number\">100000<\/span>),\n  (<span class=\"hljs-string\">'Texas'<\/span>, <span class=\"hljs-string\">'Marketing'<\/span>, <span class=\"hljs-number\">80000<\/span>);\n\n<span class=\"hljs-keyword\">SELECT<\/span>\n  *\n<span class=\"hljs-keyword\">FROM<\/span>\n  salary_reports;<\/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><\/details>\n\n\n\n<p>The following query uses the <code>AVG()<\/code> window function to calculate the average salary across states and jobs:<\/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  state,\n  job,\n  salary,\n  <span class=\"hljs-keyword\">ROUND<\/span>(<span class=\"hljs-keyword\">AVG<\/span>(salary) <span class=\"hljs-keyword\">OVER<\/span> (), <span class=\"hljs-number\">2<\/span>) average_salary\n<span class=\"hljs-keyword\">FROM<\/span>\n  salary_reports\n<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span>\n  state,\n  job;<\/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><a href=\"https:\/\/www.sqltutorial.org\/playground\/?db=salaries&amp;q=U0VMRUNUIHN0YXRlLCBqb2IsIHNhbGFyeSwgUk9VTkQoQVZHKHNhbGFyeSkgT1ZFUiAoKSwgMikgYXZlcmFnZV9zYWxhcnkgRlJPTSBzYWxhcnlfcmVwb3J0cyBPUkRFUiBCWSBzdGF0ZSwgam9iOw%3D%3D\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<p>Output:<\/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\">   state    |    job    |  salary   | average_salary\n<span class=\"hljs-comment\">------------+-----------+-----------+----------------<\/span>\n California | IT        | 150000.00 |      115000.00\n California | Marketing | 130000.00 |      115000.00\n Texas      | IT        | 100000.00 |      115000.00\n Texas      | Marketing |  80000.00 |      115000.00<\/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, the <code>AVG<\/code> function calculates the average salary of all salaries in four rows:<\/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\">(150,000 + 130,000 + 100,000 + 80,000) \/ 4<\/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<h2 class=\"wp-block-heading\" id='partitioning-data-by-jobs'>Partitioning data by jobs <a href=\"#partitioning-data-by-jobs\" class=\"anchor\" id=\"partitioning-data-by-jobs\" title=\"Anchor for Partitioning data by jobs\">#<\/a><\/h2>\n\n\n\n<p>To calculate average salaries by jobs across states, you can use the <code>PARITION BY<\/code> clause to divide the result set into partitions:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-6\" 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  state,\n  job,\n  salary,\n  <span class=\"hljs-keyword\">ROUND<\/span>(<span class=\"hljs-keyword\">AVG<\/span>(salary) <span class=\"hljs-keyword\">OVER<\/span> (<span class=\"hljs-keyword\">PARTITION<\/span> <span class=\"hljs-keyword\">BY<\/span> job), <span class=\"hljs-number\">2<\/span>) average_salary\n<span class=\"hljs-keyword\">FROM<\/span>\n  salary_reports\n<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span>\n  state,\n  job;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><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><a href=\"https:\/\/www.sqltutorial.org\/playground\/?db=salaries&amp;q=U0VMRUNUIHN0YXRlLCBqb2IsIHNhbGFyeSwgQVZHKHNhbGFyeSkgT1ZFUiAoIFBBUlRJVElPTiBCWSBqb2IgKSBhdmVyYWdlX3NhbGFyeSBGUk9NIHNhbGFyeV9yZXBvcnRzIE9SREVSIEJZIGpvYjs%3D\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<p>Output:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-7\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">   state    |    job    |  salary   | average_salary\n<span class=\"hljs-comment\">------------+-----------+-----------+----------------<\/span>\n California | IT        | 150000.00 |      125000.00\n California | Marketing | 130000.00 |      105000.00\n Texas      | IT        | 100000.00 |      125000.00\n Texas      | Marketing |  80000.00 |      105000.00<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-7\"><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 class=\"note\">Note that the query uses the <code><a href=\"https:\/\/www.sqltutorial.org\/sql-math-functions\/sql-round\/\">ROUND()<\/a><\/code> function to round the average values to numbers with two decimal places.<\/p>\n\n\n\n<p>In this example, the <code>PARITION BY<\/code> clause divides the result set by the values in the job columns. Since we have two jobs (<code>IT<\/code> &amp; <code>Marketing<\/code>), the <code>PARTITION BY<\/code> clause divides the result set into two partitions:<\/p>\n\n\n\n<p>The first partition:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-8\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">   state    |    job    |  salary\n<span class=\"hljs-comment\">------------+-----------+-----------<\/span>\n California | IT        | 150000.00\n Texas      | IT        | 100000.00<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-8\"><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 second partition:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-9\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">   state    |    job    |  salary\n<span class=\"hljs-comment\">------------+-----------+-----------<\/span>\n California | Marketing | 130000.00\n Texas      | Marketing |  80000.00<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-9\"><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 <code>AVG()<\/code> window function calculates the average salary of each partition and returns <code>125,000<\/code> for the first partition:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-10\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">(150,000 + 100,000) \/ 2 = 125,000<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-10\"><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>And <code>105,000<\/code> for the second partition:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-11\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">(100,000 + 80,000) \/2 = 105,000<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-11\"><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<h2 class=\"wp-block-heading\" id='partitioning-data-by-states'>Partitioning data by states <a href=\"#partitioning-data-by-states\" class=\"anchor\" id=\"partitioning-data-by-states\" title=\"Anchor for Partitioning data by states\">#<\/a><\/h2>\n\n\n\n<p>The following query uses the <code>PARTITION BY<\/code> clause to calculate the average salaries by states across jobs:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-12\" 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  state,\n  job,\n  salary,\n  <span class=\"hljs-keyword\">ROUND<\/span>(<span class=\"hljs-keyword\">AVG<\/span>(salary) <span class=\"hljs-keyword\">OVER<\/span> (<span class=\"hljs-keyword\">PARTITION<\/span> <span class=\"hljs-keyword\">BY<\/span> state), <span class=\"hljs-number\">2<\/span>) average_salary\n<span class=\"hljs-keyword\">FROM<\/span>\n  salary_reports\n<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span>\n  state,\n  job;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-12\"><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><a href=\"https:\/\/www.sqltutorial.org\/playground\/?db=salaries&amp;q=U0VMRUNUIHN0YXRlLCBqb2IsIHNhbGFyeSwgUk9VTkQoQVZHKHNhbGFyeSkgT1ZFUiAoUEFSVElUSU9OIEJZIHN0YXRlKSwgMikgYXZlcmFnZV9zYWxhcnkgRlJPTSBzYWxhcnlfcmVwb3J0cyBPUkRFUiBCWSBzdGF0ZSwgam9iOw%3D%3D\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<p>Output:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-13\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">   state    |    job    |  salary   | average_salary\n<span class=\"hljs-comment\">------------+-----------+-----------+----------------<\/span>\n California | IT        | 150000.00 |      140000.00\n California | Marketing | 130000.00 |      140000.00\n Texas      | IT        | 100000.00 |       90000.00\n Texas      | Marketing |  80000.00 |       90000.00<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-13\"><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, the <code>PARITTION BY<\/code> clause divides the result set by the values in the <code>state<\/code> column. <\/p>\n\n\n\n<p>Since there are two states <code>California<\/code> and <code>Texas<\/code>, the <code>PARTITION BY<\/code> clause divides the result set into two partitions, each per state:<\/p>\n\n\n\n<p>First partition:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-14\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">   state    |    job    |  salary\n<span class=\"hljs-comment\">------------+-----------+-----------<\/span>\n California | IT        | 150000.00\n California | Marketing | 130000.00<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-14\"><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>Second partition:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-15\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">   state    |    job    |  salary   | average_salary\n<span class=\"hljs-comment\">------------+-----------+-----------+----------------<\/span>\n Texas      | IT        | 100000.00 |       90000.00\n Texas      | Marketing |  80000.00 |       90000.00<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-15\"><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 <code>AVG()<\/code> window function calculates the average salary for each partition. It returns <code>140,000<\/code> for the first partition and <code>90,000<\/code> for the second one.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='partitioning-data-by-departments'>Partitioning data by departments <a href=\"#partitioning-data-by-departments\" class=\"anchor\" id=\"partitioning-data-by-departments\" title=\"Anchor for Partitioning data by departments\">#<\/a><\/h2>\n\n\n\n<p>We&#8217;ll use the <code>employees<\/code> table from the <a href=\"https:\/\/www.sqltutorial.org\/sql-sample-database\/\">sample database<\/a>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"169\" height=\"273\" src=\"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/03\/employees.png\" alt=\"SQL PARTITION BY \" class=\"wp-image-237\"\/><\/figure>\n\n\n\n<p>The following query uses the <code>SUM<\/code> window function with a <code>PARTITION BY<\/code> clause to retrieve the employee salary along with the total salary of the current employee&#8217;s department:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-16\" 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  first_name,\n  last_name,\n  department_name,\n  salary,\n  <span class=\"hljs-keyword\">SUM<\/span>(salary) <span class=\"hljs-keyword\">OVER<\/span> (\n    <span class=\"hljs-keyword\">PARTITION<\/span> <span class=\"hljs-keyword\">BY<\/span> department_name\n  ) department_salary\n<span class=\"hljs-keyword\">FROM<\/span>\n  employees e\n  <span class=\"hljs-keyword\">INNER<\/span> <span class=\"hljs-keyword\">JOIN<\/span> departments d <span class=\"hljs-keyword\">ON<\/span> d.department_id = e.department_id\n<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span>\n  department_name;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-16\"><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><a href=\"https:\/\/www.sqltutorial.org\/playground\/?q=U0VMRUNUIGZpcnN0X25hbWUsIGxhc3RfbmFtZSwgZGVwYXJ0bWVudF9uYW1lLCBzYWxhcnksIHN1bShzYWxhcnkpIE9WRVIgKCBQQVJUSVRJT04gQlkgZGVwYXJ0bWVudF9uYW1lICkgZGVwYXJ0bWVudF9zYWxhcnkgRlJPTSBlbXBsb3llZXMgZSBJTk5FUiBKT0lOIGRlcGFydG1lbnRzIGQgT04gZC5kZXBhcnRtZW50X2lkID0gZS5kZXBhcnRtZW50X2lkIE9SREVSIEJZIGRlcGFydG1lbnRfbmFtZTs%3D\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<p>Output:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-17\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"> first_name  |  last_name  | department_name  |  salary  | department_salary\n<span class=\"hljs-comment\">-------------+-------------+------------------+----------+-------------------<\/span>\n William     | Gietz       | Accounting       |  8300.00 |          20300.00\n Shelley     | Higgins     | Accounting       | 12000.00 |          20300.00\n Jennifer    | Whalen      | Administration   |  4400.00 |           4400.00\n Steven      | King        | Executive        | 24000.00 |          58000.00\n Neena       | Kochhar     | Executive        | 17000.00 |          58000.00\n Lex         | De Haan     | Executive        | 17000.00 |          58000.00\n...<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-17\"><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>How the query works:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>First, the <code>PARTITION BY<\/code> clause divides the rows in the <code>employees<\/code> table by departments. Employees within the same department belong to the same partition.<\/li>\n\n\n\n<li>Second, the <code>SUM()<\/code> function calculates the total salary of employees in each department.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id='summary'>Summary <a href=\"#summary\" class=\"anchor\" id=\"summary\" title=\"Anchor for Summary\">#<\/a><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use the <code>PARTITION BY<\/code> clause to divide a result set into multiple partitions.<\/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=\"1793\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/\"\n\t\t\t\tdata-post-title=\"SQL PARTITION BY\"\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=\"1793\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/\"\n\t\t\t\tdata-post-title=\"SQL PARTITION BY\"\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>You&#8217;ll learn how to use the SQL PARTITION BY clause to divide a result set into multiple partitions to which a window function applies.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1707,"menu_order":10,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1793","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>SQL PARTITION BY Clause<\/title>\n<meta name=\"description\" content=\"You&#039;ll learn how to use the SQL PARTITION BY clause to divide a result set into multiple partitions to which a window function applies.\" \/>\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.sqltutorial.org\/sql-window-functions\/sql-partition-by\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL PARTITION BY Clause\" \/>\n<meta property=\"og:description\" content=\"You&#039;ll learn how to use the SQL PARTITION BY clause to divide a result set into multiple partitions to which a window function applies.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-08T12:20:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/03\/employees.png\" \/>\n\t<meta property=\"og:image:width\" content=\"169\" \/>\n\t<meta property=\"og:image:height\" content=\"273\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/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\":\"WebPage\",\"@id\":\"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/\",\"url\":\"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/\",\"name\":\"SQL PARTITION BY Clause\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltutorial.org\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/03\/employees.png\",\"datePublished\":\"2018-09-17T15:26:14+00:00\",\"dateModified\":\"2025-02-08T12:20:00+00:00\",\"description\":\"You'll learn how to use the SQL PARTITION BY clause to divide a result set into multiple partitions to which a window function applies.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/#primaryimage\",\"url\":\"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/03\/employees.png\",\"contentUrl\":\"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/03\/employees.png\",\"width\":169,\"height\":273,\"caption\":\"SQL Correlated Subquery - employees table\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqltutorial.org\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Window Functions\",\"item\":\"https:\/\/www.sqltutorial.org\/sql-window-functions\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SQL PARTITION BY\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sqltutorial.org\/#website\",\"url\":\"https:\/\/www.sqltutorial.org\/\",\"name\":\"SQL Tutorial\",\"description\":\"An Interactive SQL Tutorial\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sqltutorial.org\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL PARTITION BY Clause","description":"You'll learn how to use the SQL PARTITION BY clause to divide a result set into multiple partitions to which a window function applies.","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.sqltutorial.org\/sql-window-functions\/sql-partition-by\/","og_locale":"en_US","og_type":"article","og_title":"SQL PARTITION BY Clause","og_description":"You'll learn how to use the SQL PARTITION BY clause to divide a result set into multiple partitions to which a window function applies.","og_url":"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/","og_site_name":"SQL Tutorial","article_modified_time":"2025-02-08T12:20:00+00:00","og_image":[{"width":169,"height":273,"url":"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/03\/employees.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/","url":"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/","name":"SQL PARTITION BY Clause","isPartOf":{"@id":"https:\/\/www.sqltutorial.org\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/#primaryimage"},"image":{"@id":"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/03\/employees.png","datePublished":"2018-09-17T15:26:14+00:00","dateModified":"2025-02-08T12:20:00+00:00","description":"You'll learn how to use the SQL PARTITION BY clause to divide a result set into multiple partitions to which a window function applies.","breadcrumb":{"@id":"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/#primaryimage","url":"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/03\/employees.png","contentUrl":"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/03\/employees.png","width":169,"height":273,"caption":"SQL Correlated Subquery - employees table"},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqltutorial.org\/sql-window-functions\/sql-partition-by\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqltutorial.org\/"},{"@type":"ListItem","position":2,"name":"SQL Window Functions","item":"https:\/\/www.sqltutorial.org\/sql-window-functions\/"},{"@type":"ListItem","position":3,"name":"SQL PARTITION BY"}]},{"@type":"WebSite","@id":"https:\/\/www.sqltutorial.org\/#website","url":"https:\/\/www.sqltutorial.org\/","name":"SQL Tutorial","description":"An Interactive SQL Tutorial","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqltutorial.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/pages\/1793","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/comments?post=1793"}],"version-history":[{"count":0,"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/pages\/1793\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/pages\/1707"}],"wp:attachment":[{"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/media?parent=1793"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}