About 1,760 results
Open links in new tab
  1. SQL CASE Expression - W3Schools

    The CASE expression is used to define different results based on specified conditions in an SQL statement. The CASE expression …

  2. CASE (Transact-SQL) - SQL Server | Microsoft Learn

    Jul 20, 2026 · Transact-SQL reference for the CASE expression. CASE evaluates a list of conditions to return specific results.

  3. MySQL CASE Function - W3Schools

    The CASE statement goes through conditions and return a value when the first condition is met (like an IF-THEN-ELSE statement). …

  4. SQL CASE Statement - GeeksforGeeks

    Apr 11, 2026 · The SQL CASE statement is used to add conditional logic inside SQL queries. It checks conditions one by one and …

  5. CASE Statement in SQL Examples - SQL Server Tips

    Apr 20, 2021 · This tip will teach you when and how you can use CASE in T-SQL statements with several code examples to give you …

  6. SQL CASE Expression

    This tutorial shows you how to use two forms of SQL CASE expressions including simple CASE and searched CASE expressions.

  7. SQL CASE Statement (With Examples) - Programiz

    The SQL CASE statement is used to check conditions and perform tasks on each row while selecting data. In this tutorial, you will …

  8. MySQL CASE Function - GeeksforGeeks

    Mar 27, 2026 · The MySQL CASE function is a conditional expression that returns a value when the first matching condition is met. If …

  9. How to Use the CASE Statement in SQL (With Examples)

    Learn how to use the SQL `CASE` statement to implement conditional logic efficiently. Explore its syntax, use cases, best practices, …

  10. SQL Case in Where Clause: Simplifying Data Filtering

    Jun 26, 2023 · The article explains how to use sql case in where clause to filter data based on various conditions. It describes both …