About 2,720 results
Open links in new tab
  1. Oracle DECODE

    This tutorial shows you how to use the Oracle DECODE () function to add the procedural if-then-else logic to SQL queries.

  2. Oracle / PLSQL: DECODE Function - TechOnTheNet

    This Oracle tutorial explains how to use the Oracle / PLSQL DECODE function with syntax and examples. The Oracle / PLSQL DECODE function has the functionality of an IF-THEN-ELSE statement.

  3. Understanding the SQL DECODE() Function - DataCamp

    Aug 6, 2024 · This tutorial provides a comprehensive guide to using the SQL DECODE() function in Oracle. I will also compare DECODE() to CASE WHEN in Oracle and help you understand when to …

  4. DECODE - Oracle Help Center

    In a DECODE function, Oracle considers two nulls to be equivalent. If expr is null, then Oracle returns the result of the first search that is also null. The maximum number of components in the DECODE …

  5. A Basic Guide to Decoding in Oracle SQL - Tricentis

    Mar 11, 2025 · Learn how to use the Oracle DECODE function in Oracle SQL to simplify queries and handle conditional logic with ease in this comprehensive guide.

  6. DECODE | NVL SQL Functions (Oracle) - RelationalDBDesign

    The DECODE function in Oracle is a versatile and powerful tool that allows users to perform conditional transformations on data within an SQL query. It is similar to the CASE statement, but it offers a more …

  7. Oracle sql decode processing with Examples and FAQ - Techgoeasy

    Jan 25, 2026 · Oracle decode is the method in the Oracle database to transform data values from one value to another which is better to understand. Oracle Decode transforms data values at retrieval …

  8. How to use the decode function in Oracle - Oradev.com

    If the first result has the datatype CHAR or if the first result is null, then Oracle converts the return value to the datatype VARCHAR2. Note: two null values are considered equivalent in the decode statement.

  9. Oracle DECODE Function Explained with Examples - Database Star

    Feb 19, 2015 · The purpose of the Oracle DECODE function is to perform an IF-THEN-ELSE function. It's similar to a CASE statement, but CASE is a statement where DECODE is a function.

  10. DECODE in SQL - Syntax of Oracle Decode Function - Edureka

    Feb 21, 2025 · DECODE compares the expression to each search value one by one. If expression is equal to a search, then the corresponding result is returned by the Oracle Database. If a match is not …