About 188,000 results
Open links in new tab
  1. MySQL Operators - W3Schools

    Drag and drop the correct SQL operators to complete the query. Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, …

  2. Condition in MySQL | Conditional Operators in MySQL - EDUCBA

    May 10, 2023 · Guide to Condition in MySQL. Here we discuss the Introduction, Conditional Operators in MySQL and Types of SQL Operators with their Syntax.

  3. How do you write a conditional in a MySQL select statement?

    Oct 30, 2009 · I'm using MySQL, and I want to do a sort of ternary statement in my SQL like: FROM USER. The results would be similar to: How does one accomplish this? x2. This is the …

  4. IF, IF-THEN, IF-THEN-ELSE and IF-THEN-ELSEIF-ELSE Statement

    Aug 21, 2024 · MySQL offers conditional control flow with IF statements, allowing us to execute blocks of SQL code depending on whether a condition is true or false. In this article, We will …

  5. Conditions in MySQL with Examples - Dot Net Tutorials

    In MySQL, a condition or an expression is made up of keywords, identifiers, and constants and it compares given values with the data rows values in a table. If the condition is matched with …

  6. MySQL - Conditions - i2tutorials

    Conditional Operators in MySQL IF() Function – A TRUE condition leads to the result “YES”, whereas a FALSE condition leads to the result “NO”. COALESCE () Function – The result of …

  7. MySQL AND, OR and NOT Operators - W3Schools

    The AND and OR operators are used to filter records based on more than one condition: AND are TRUE. OR is TRUE. The NOT operator displays a record if the condition (s) is NOT TRUE. …

  8. Logical Operators in MySQL - Scaler Topics

    May 9, 2023 · The logical operators in MySQL are used to join numerous conditions in a WHERE clause to filter data from a table. MySQL's three logical operators are AND, OR, and NOT. …

  9. Operators | MySQL Syntax Basics

    A condition expression consists of an operator and its operand(s). The AND and OR operators may use other condition expressions as their operands, and so they can be used to build more …

  10. SQL | Conditional Expressions - GeeksforGeeks

    Dec 3, 2024 · In SQL, conditional expressions are essential for making decisions based on certain conditions directly within queries. These expressions allow us to apply business logic, to return …