Search results
Learn how to use the SQL CASE expression to check conditions and return values like an if-then-else statement. See syntax, examples and a demo database.
- Try It Yourself
CASE WHEN Quantity > 30 THEN 'The quantity is greater than...
- The Try-MySQL Editor
SQL Statement: SELECT CustomerName, City, Country FROM...
- Try It Yourself
28 lut 2023 · Naucz się, jak używać instrukcji CASE w SQL Server do wyboru wyników na podstawie warunków lub wartości. Zobacz przykłady, schematy i porównania z innymi językami programowania.
3 wrz 2024 · CASE can be used in any statement or clause that allows a valid expression. For example, you can use CASE in statements such as SELECT, UPDATE, DELETE and SET, and in clauses such as <select_list>, IN, WHERE, ORDER BY, and HAVING. Transact-SQL syntax conventions.
13 cze 2021 · Here are the CASE expression examples from the PostgreSQL docs (Postgres follows the SQL standard here): SELECT a, CASE WHEN a=1 THEN 'one' WHEN a=2 THEN 'two' ELSE 'other' END FROM test; or. SELECT a, CASE a WHEN 1 THEN 'one' WHEN 2 THEN 'two' ELSE 'other' END FROM test;
16 sty 2024 · The CASE WHEN statement in SQL is a pivotal tool. It provides a structured and flexible approach to conditional logic – one that mirrors everyday decision-making. Plus, its intuitive nature makes it an accessible yet powerful feature of SQL.
28 cze 2024 · Co to jest instrukcja CASE w SQL Server? Prosty PRZYPADEK. Przeszukany przypadek. Różnica między przypadkiem prostym a przeszukiwanym. Zagnieżdżony CASE: CASE w IF ELSE. Zagnieżdżony CASE: CASE wewnątrz CASE. CASE z AKTUALIZACJĄ. CASE z zamówieniem. Interesujące fakty! Podsumowanie. Co to jest instrukcja CASE w SQL Server? Nie przegap:
The SQL CASE expression allows you to evaluate a list of conditions and returns one of the possible results. The CASE expression has two formats: simple CASE and searched CASE. You can use the CASE expression in a clause or statement that allows a valid expression.