{"id":1497,"date":"2019-03-03T22:36:32","date_gmt":"2019-03-03T15:36:32","guid":{"rendered":"http:\/\/www.sqlservertutorial.net\/?page_id=1497"},"modified":"2020-04-11T20:12:36","modified_gmt":"2020-04-11T13:12:36","slug":"sql-server-case","status":"publish","type":"page","link":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/","title":{"rendered":"SQL Server CASE"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will learn how to use the SQL Server <code>CASE<\/code> expression to add if-else logic to SQL queries.<\/p>\n\n\n\n<p>SQL Server <code>CASE<\/code> expression evaluates a list of conditions and returns one of the multiple specified results. The <code>CASE<\/code> expression has two formats: simple <code>CASE<\/code> expression and searched <code>CASE<\/code> expression. Both of <code>CASE<\/code> expression formats support an optional <code>ELSE<\/code> statement.<\/p>\n\n\n\n<p>Because CASE is an expression, you can use it in any clause that accepts an expression such as <code><a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-select\/\">SELECT<\/a><\/code>, <code><a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-where\/\">WHERE<\/a><\/code>, <code><a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-group-by\/\">GROUP BY<\/a><\/code>, and <code><a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-having\/\">HAVING<\/a><\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='sql-server-simple-case-expression'>SQL Server simple CASE expression <a href=\"#sql-server-simple-case-expression\" class=\"anchor\" id=\"sql-server-simple-case-expression\" title=\"Anchor for SQL Server simple &lt;code&gt;CASE&lt;\/code&gt; expression\">#<\/a><\/h2>\n\n\n\n<p>The following shows the syntax of the simple <code>CASE<\/code> expression:<\/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\">CASE input   \n    WHEN e1 THEN r1\n    WHEN e2 THEN r2\n    ...\n    WHEN en THEN rn\n    &#91; ELSE re ]   \n<span class=\"hljs-keyword\">END<\/span>  \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>The simple <code>CASE<\/code> expression compares the input expression (<code>input<\/code>) to an expression (<code>ei<\/code>) in each <code>WHEN<\/code> clause for equality. If the input expression equals an expression (<code>ei<\/code>) in the <code>WHEN<\/code> clause, the result (<code>ri<\/code>) in the corresponding <code>THEN<\/code> clause is returned.<\/p>\n\n\n\n<p>If the input expression does not equal to any expression and the <code>ELSE<\/code> clause is available, the <code>CASE<\/code> expression will return the result in the <code>ELSE<\/code> clause (<code>re<\/code>).<\/p>\n\n\n\n<p>In case the <code>ELSE<\/code> clause is omitted and the input expression does not equal to any expression in the <code>WHEN<\/code> clause, the <code>CASE<\/code> expression will return NULL.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='a-using-simple-case-expression-in-the-select-clause-example'>A) Using simple CASE expression in the SELECT clause example <a href=\"#a-using-simple-case-expression-in-the-select-clause-example\" class=\"anchor\" id=\"a-using-simple-case-expression-in-the-select-clause-example\" title=\"Anchor for A) Using simple &lt;code&gt;CASE&lt;\/code&gt; expression in the &lt;code&gt;SELECT&lt;\/code&gt; clause example\">#<\/a><\/h3>\n\n\n\n<p>See the following <code>sales.orders<\/code> table from the <a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-sample-database\/\">sample database<\/a>:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"181\" height=\"219\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/orders.png\" alt=\"\" class=\"wp-image-142\"\/><\/figure>\n\n\n\n<p>This example uses the <code><a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-aggregate-functions\/sql-server-count\/\">COUNT()<\/a><\/code> function with the <code><a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-group-by\/\">GROUP BY<\/a><\/code> clause to return the number orders for each order&#8217;s status:<\/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    order_status, \n    <span class=\"hljs-keyword\">COUNT<\/span>(order_id) order_count\n<span class=\"hljs-keyword\">FROM<\/span>    \n    sales.orders\n<span class=\"hljs-keyword\">WHERE<\/span> \n    <span class=\"hljs-keyword\">YEAR<\/span>(order_date) = <span class=\"hljs-number\">2018<\/span>\n<span class=\"hljs-keyword\">GROUP<\/span> <span class=\"hljs-keyword\">BY<\/span> \n    order_status;\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>Here is the output:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"151\" height=\"95\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CASE-Expression-Order-count-by-status.png\" alt=\"SQL Server CASE Expression - Order count by status\" class=\"wp-image-1498\"\/><\/figure>\n\n\n\n<p>The values in the <code>order_status<\/code> column are numbers, which is not meaningful in this case. To make the output more understandable, you can use the simple <code>CASE<\/code> expression as shown in the following query:<\/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    <span class=\"hljs-keyword\">CASE<\/span> order_status\n        <span class=\"hljs-keyword\">WHEN<\/span> <span class=\"hljs-number\">1<\/span> <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-string\">'Pending'<\/span>\n        <span class=\"hljs-keyword\">WHEN<\/span> <span class=\"hljs-number\">2<\/span> <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-string\">'Processing'<\/span>\n        <span class=\"hljs-keyword\">WHEN<\/span> <span class=\"hljs-number\">3<\/span> <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-string\">'Rejected'<\/span>\n        <span class=\"hljs-keyword\">WHEN<\/span> <span class=\"hljs-number\">4<\/span> <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-string\">'Completed'<\/span>\n    <span class=\"hljs-keyword\">END<\/span> <span class=\"hljs-keyword\">AS<\/span> order_status, \n    <span class=\"hljs-keyword\">COUNT<\/span>(order_id) order_count\n<span class=\"hljs-keyword\">FROM<\/span>    \n    sales.orders\n<span class=\"hljs-keyword\">WHERE<\/span> \n    <span class=\"hljs-keyword\">YEAR<\/span>(order_date) = <span class=\"hljs-number\">2018<\/span>\n<span class=\"hljs-keyword\">GROUP<\/span> <span class=\"hljs-keyword\">BY<\/span> \n    order_status;\n<\/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 output:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"148\" height=\"93\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CASE-Expression-Using-Simple-CASE-in-SELECT-clause.png\" alt=\"SQL Server CASE Expression - Using Simple CASE in SELECT clause\" class=\"wp-image-1499\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id='b-using-simple-case-expression-in-aggregate-function-example'>B) Using simple CASE expression in aggregate function example <a href=\"#b-using-simple-case-expression-in-aggregate-function-example\" class=\"anchor\" id=\"b-using-simple-case-expression-in-aggregate-function-example\" title=\"Anchor for B) Using simple &lt;code&gt;CASE&lt;\/code&gt; expression in aggregate function example\">#<\/a><\/h3>\n\n\n\n<p>See the following query:<\/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    <span class=\"hljs-keyword\">SUM<\/span>(<span class=\"hljs-keyword\">CASE<\/span>\n            <span class=\"hljs-keyword\">WHEN<\/span> order_status = <span class=\"hljs-number\">1<\/span>\n            <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-number\">1<\/span>\n            <span class=\"hljs-keyword\">ELSE<\/span> <span class=\"hljs-number\">0<\/span>\n        <span class=\"hljs-keyword\">END<\/span>) <span class=\"hljs-keyword\">AS<\/span> <span class=\"hljs-string\">'Pending'<\/span>, \n    <span class=\"hljs-keyword\">SUM<\/span>(<span class=\"hljs-keyword\">CASE<\/span>\n            <span class=\"hljs-keyword\">WHEN<\/span> order_status = <span class=\"hljs-number\">2<\/span>\n            <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-number\">1<\/span>\n            <span class=\"hljs-keyword\">ELSE<\/span> <span class=\"hljs-number\">0<\/span>\n        <span class=\"hljs-keyword\">END<\/span>) <span class=\"hljs-keyword\">AS<\/span> <span class=\"hljs-string\">'Processing'<\/span>, \n    <span class=\"hljs-keyword\">SUM<\/span>(<span class=\"hljs-keyword\">CASE<\/span>\n            <span class=\"hljs-keyword\">WHEN<\/span> order_status = <span class=\"hljs-number\">3<\/span>\n            <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-number\">1<\/span>\n            <span class=\"hljs-keyword\">ELSE<\/span> <span class=\"hljs-number\">0<\/span>\n        <span class=\"hljs-keyword\">END<\/span>) <span class=\"hljs-keyword\">AS<\/span> <span class=\"hljs-string\">'Rejected'<\/span>, \n    <span class=\"hljs-keyword\">SUM<\/span>(<span class=\"hljs-keyword\">CASE<\/span>\n            <span class=\"hljs-keyword\">WHEN<\/span> order_status = <span class=\"hljs-number\">4<\/span>\n            <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-number\">1<\/span>\n            <span class=\"hljs-keyword\">ELSE<\/span> <span class=\"hljs-number\">0<\/span>\n        <span class=\"hljs-keyword\">END<\/span>) <span class=\"hljs-keyword\">AS<\/span> <span class=\"hljs-string\">'Completed'<\/span>, \n    <span class=\"hljs-keyword\">COUNT<\/span>(*) <span class=\"hljs-keyword\">AS<\/span> Total\n<span class=\"hljs-keyword\">FROM<\/span>    \n    sales.orders\n<span class=\"hljs-keyword\">WHERE<\/span> \n    <span class=\"hljs-keyword\">YEAR<\/span>(order_date) = <span class=\"hljs-number\">2018<\/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=\"298\" height=\"40\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CASE-Expression-in-Aggregate-Functions-example.png\" alt=\"SQL Server CASE Expression in Aggregate Functions example\" class=\"wp-image-1500\"\/><\/figure>\n\n\n\n<p>In this example:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>First, the condition in the <code><a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-where\/\">WHERE<\/a><\/code> clause includes sales order in 2018.<\/li><li>Second, the <code>CASE<\/code> expression returns either 1 or 0 based on the order status.<\/li><li>Third, the <code><a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-aggregate-functions\/sql-server-sum\/\">SUM()<\/a><\/code> function adds up the number of order for each order status.<\/li><li>Fourth, the <code><a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-aggregate-functions\/sql-server-count\/\">COUNT()<\/a><\/code> function returns the total orders.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id='sql-server-searched-case-expression'>SQL Server searched CASE expression <a href=\"#sql-server-searched-case-expression\" class=\"anchor\" id=\"sql-server-searched-case-expression\" title=\"Anchor for SQL Server searched &lt;code&gt;CASE&lt;\/code&gt; expression\">#<\/a><\/h2>\n\n\n\n<p>The following shows the syntax of the searched <code>CASE<\/code> expression:<\/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\">CASE  \n    WHEN e1 THEN r1\n    WHEN e2 THEN r2\n    ...\n    WHEN en THEN rn\n    &#91; ELSE re ]   \n<span class=\"hljs-keyword\">END<\/span> \n<\/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>In this syntax:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>e1, e2, &#8230;ei, &#8230; en are Boolean expressions.<\/li><li>r1, r2, &#8230;ri,&#8230;, or rn is one of the possible results.<\/li><\/ul>\n\n\n\n<p>The searched <code>CASE<\/code> expression evaluates the Boolean expression in each <code>WHEN<\/code> clause in the specified order and returns the result (<code>ri<\/code>) if the Boolean expression (<code>ei<\/code>) evaluates to <code>TRUE<\/code>.<\/p>\n\n\n\n<p>If no Boolean expression evaluates to <code>TRUE<\/code>, the searched <code>CASE<\/code> expression returns the result (<code>re<\/code>) in the <code>ELSE<\/code> clause or <code>NULL<\/code> if the <code>ELSE<\/code> clause is not specified.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='a-using-searched-case-expression-in-the-select-clause'>A) Using searched CASE expression in the SELECT clause <a href=\"#a-using-searched-case-expression-in-the-select-clause\" class=\"anchor\" id=\"a-using-searched-case-expression-in-the-select-clause\" title=\"Anchor for A) Using searched &lt;code&gt;CASE&lt;\/code&gt; expression in the &lt;code&gt;SELECT&lt;\/code&gt; clause\">#<\/a><\/h3>\n\n\n\n<p>See the following <code>sales.orders<\/code> and <code>sales.order_items<\/code> from the <a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-sample-database\/\">sample database<\/a>:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"418\" height=\"219\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/orders-order_items.png\" alt=\"Sample Tables\" class=\"wp-image-139\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/orders-order_items.png 418w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/orders-order_items-300x157.png 300w\" sizes=\"auto, (max-width: 418px) 100vw, 418px\" \/><\/figure>\n\n\n\n<p>The following statement uses the searched <code>CASE<\/code> expression to classify sales order by order value:<\/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    o.order_id, \n    <span class=\"hljs-keyword\">SUM<\/span>(quantity * list_price) order_value,\n    <span class=\"hljs-keyword\">CASE<\/span>\n        <span class=\"hljs-keyword\">WHEN<\/span> <span class=\"hljs-keyword\">SUM<\/span>(quantity * list_price) &lt;= <span class=\"hljs-number\">500<\/span> \n            <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-string\">'Very Low'<\/span>\n        <span class=\"hljs-keyword\">WHEN<\/span> <span class=\"hljs-keyword\">SUM<\/span>(quantity * list_price) &gt; <span class=\"hljs-number\">500<\/span> <span class=\"hljs-keyword\">AND<\/span> \n            <span class=\"hljs-keyword\">SUM<\/span>(quantity * list_price) &lt;= <span class=\"hljs-number\">1000<\/span> \n            <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-string\">'Low'<\/span>\n        <span class=\"hljs-keyword\">WHEN<\/span> <span class=\"hljs-keyword\">SUM<\/span>(quantity * list_price) &gt; <span class=\"hljs-number\">1000<\/span> <span class=\"hljs-keyword\">AND<\/span> \n            <span class=\"hljs-keyword\">SUM<\/span>(quantity * list_price) &lt;= <span class=\"hljs-number\">5000<\/span> \n            <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-string\">'Medium'<\/span>\n        <span class=\"hljs-keyword\">WHEN<\/span> <span class=\"hljs-keyword\">SUM<\/span>(quantity * list_price) &gt; <span class=\"hljs-number\">5000<\/span> <span class=\"hljs-keyword\">AND<\/span> \n            <span class=\"hljs-keyword\">SUM<\/span>(quantity * list_price) &lt;= <span class=\"hljs-number\">10000<\/span> \n            <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-string\">'High'<\/span>\n        <span class=\"hljs-keyword\">WHEN<\/span> <span class=\"hljs-keyword\">SUM<\/span>(quantity * list_price) &gt; <span class=\"hljs-number\">10000<\/span> \n            <span class=\"hljs-keyword\">THEN<\/span> <span class=\"hljs-string\">'Very High'<\/span>\n    <span class=\"hljs-keyword\">END<\/span> order_priority\n<span class=\"hljs-keyword\">FROM<\/span>    \n    sales.orders o\n<span class=\"hljs-keyword\">INNER<\/span> <span class=\"hljs-keyword\">JOIN<\/span> sales.order_items i <span class=\"hljs-keyword\">ON<\/span> i.order_id = o.order_id\n<span class=\"hljs-keyword\">WHERE<\/span> \n    <span class=\"hljs-keyword\">YEAR<\/span>(order_date) = <span class=\"hljs-number\">2018<\/span>\n<span class=\"hljs-keyword\">GROUP<\/span> <span class=\"hljs-keyword\">BY<\/span> \n    o.order_id;\n<\/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>The following picture shows the partial output:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"221\" height=\"400\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CASE-Expression-Searched-CASE-Expression-Example.png\" alt=\"SQL Server CASE Expression - Searched CASE Expression Example\" class=\"wp-image-1501\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CASE-Expression-Searched-CASE-Expression-Example.png 221w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CASE-Expression-Searched-CASE-Expression-Example-166x300.png 166w\" sizes=\"auto, (max-width: 221px) 100vw, 221px\" \/><\/figure>\n\n\n\n<p>In this tutorial, you will learn how to use the SQL Server <code>CASE<\/code> expression to add if-else logic to the SQL queries.<\/p>\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=\"1497\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/\"\n\t\t\t\tdata-post-title=\"SQL Server CASE\"\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=\"1497\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/\"\n\t\t\t\tdata-post-title=\"SQL Server CASE\"\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>This tutorial shows you how to use the SQL Server CASE expression to add if-else logic to SQL queries.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":100,"menu_order":83,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1497","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pragmatic Guide to SQL Server CASE Expression<\/title>\n<meta name=\"description\" content=\"This tutorial shows you how to use the SQL Server CASE expression to add if-else logic to SQL queries with many practical examples.\" \/>\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.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pragmatic Guide to SQL Server CASE Expression\" \/>\n<meta property=\"og:description\" content=\"This tutorial shows you how to use the SQL Server CASE expression to add if-else logic to SQL queries with many practical examples.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL Server Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2020-04-11T13:12:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/orders.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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-case\\\/\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-case\\\/\",\"name\":\"Pragmatic Guide to SQL Server CASE Expression\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-case\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-case\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/wp-content\\\/uploads\\\/orders.png\",\"datePublished\":\"2019-03-03T15:36:32+00:00\",\"dateModified\":\"2020-04-11T13:12:36+00:00\",\"description\":\"This tutorial shows you how to use the SQL Server CASE expression to add if-else logic to SQL queries with many practical examples.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-case\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-case\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-case\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/wp-content\\\/uploads\\\/orders.png\",\"contentUrl\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/wp-content\\\/uploads\\\/orders.png\",\"width\":181,\"height\":219},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-case\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server Basics\",\"item\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SQL Server CASE\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/#website\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/\",\"name\":\"SQL Server Tutorial\",\"description\":\"The Practical SQL Server Tutorial\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/?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":"Pragmatic Guide to SQL Server CASE Expression","description":"This tutorial shows you how to use the SQL Server CASE expression to add if-else logic to SQL queries with many practical examples.","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.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/","og_locale":"en_US","og_type":"article","og_title":"Pragmatic Guide to SQL Server CASE Expression","og_description":"This tutorial shows you how to use the SQL Server CASE expression to add if-else logic to SQL queries with many practical examples.","og_url":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/","og_site_name":"SQL Server Tutorial","article_modified_time":"2020-04-11T13:12:36+00:00","og_image":[{"url":"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/orders.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/","url":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/","name":"Pragmatic Guide to SQL Server CASE Expression","isPartOf":{"@id":"https:\/\/www.sqlservertutorial.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/#primaryimage"},"image":{"@id":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/orders.png","datePublished":"2019-03-03T15:36:32+00:00","dateModified":"2020-04-11T13:12:36+00:00","description":"This tutorial shows you how to use the SQL Server CASE expression to add if-else logic to SQL queries with many practical examples.","breadcrumb":{"@id":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/#primaryimage","url":"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/orders.png","contentUrl":"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/orders.png","width":181,"height":219},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-case\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlservertutorial.net\/"},{"@type":"ListItem","position":2,"name":"SQL Server Basics","item":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/"},{"@type":"ListItem","position":3,"name":"SQL Server CASE"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlservertutorial.net\/#website","url":"https:\/\/www.sqlservertutorial.net\/","name":"SQL Server Tutorial","description":"The Practical SQL Server Tutorial","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlservertutorial.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/1497","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/comments?post=1497"}],"version-history":[{"count":0,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/1497\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/100"}],"wp:attachment":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/media?parent=1497"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}