search
HomeDaily ProgrammingMysql KnowledgeHow to use oracle decode function in mysql

In MySQL, you can use CASE expressions to implement functions similar to Oracle's DECODE function: determine conditions and return values; use CASE expressions to list conditions and return values; add ELSE statements to specify default values.

How to use oracle decode function in mysql

Usage of Oracle DECODE function in MySQL

Oracle's DECODE function is a case statement used in Returns different values ​​under given conditions. There is no direct equivalent to the DECODE function in MySQL. However, you can use CASE expressions to achieve similar functionality.

Syntax

CASE
    WHEN condition1 THEN value1
    WHEN condition2 THEN value2
    ...
    ELSE default_value
END

Usage

  1. Determine the conditions and return value:First, Determine the conditions for comparison and the value to return if each condition is met.
  2. Use CASE expressions: Use the CASE keyword at the beginning of the expression, and then list each condition and its corresponding return value.
  3. Add an ELSE statement: Add an ELSE statement to specify a default value if any condition is not met.

Example

The following example demonstrates how to use the CASE expression to implement the DECODE function in MySQL:

SELECT
    CASE
        WHEN age < 18 THEN "Minor"
        WHEN age >= 18 AND age < 65 THEN "Adult"
        ELSE "Senior"
    END AS age_category
FROM people;

Result:

##Minor AdultSenior
age_category

Note:

CASE expression support in MySQL Use multiple WHEN clauses as well as ELSE clauses. Therefore, you can add additional conditions as needed.

The above is the detailed content of How to use oracle decode function in mysql. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!