About 967,000 results
Open links in new tab
  1. Oracle CONCAT Function

    Use the Oracle CONCAT() function to concatenate two strings. Use the concatenation operator (||) to concatenate more than two strings and make the query more readable.

  2. What is the string concatenation operator in Oracle?

    Jun 29, 2015 · There are two ways to concatenate Strings in Oracle SQL. Either using CONCAT function or || operator. CONCAT function allows you to concatenate two strings together. …

  3. Oracle SQL, concatenate multiple columns + add text

    Oct 25, 2009 · The Oracle/PLSQL CONCAT function allows to concatenate two strings together. CONCAT( string1, string2 ) string1. The first string to concatenate. string2. The second string …

  4. CONCAT - Oracle Help Center

    This example uses nesting to concatenate three character strings: SELECT CONCAT(CONCAT(last_name, '''s job category is '), job_id) "Job" FROM employees WHERE …

  5. Oracle / PLSQL: CONCAT Function - TechOnTheNet

    The CONCAT function is one method to concatenate strings in Oracle. An alternative to using the CONCAT function would be to use the || operator to catenatenate multiple strings, as follows: 'I …

  6. Oracle CONCAT Function with Examples - Database Star

    Jun 10, 2023 · If you want to concatenate multiple strings, you can use nested functions, or the double pipe character, as mentioned below. The parameters of the Oracle CONCAT function …

  7. Oracle CONCAT function - w3resource

    Aug 5, 2024 · The Oracle CONCAT() function returns the result (a string) of concatenating two string values. This function is equivalent to using the concatenation operator (||). It takes two …

  8. An Introduction to Oracle SQL Concatenation - Tricentis

    Mar 11, 2025 · In Oracle SQL, concatenation is a simple way to join strings, columns, or expressions together. This guide will help you understand how to use concatenation, step by …

  9. Concatenate results from a SQL query in Oracle - Stack Overflow

    Jul 17, 2014 · select 'E' as col, 1 as seq from dual. union. select 'F', 2 from dual. union. select 'G', 3 from dual. It's a hierarchical query which uses the "sys_connect_by_path" special function, …

  10. Concatenation Operator - Oracle Help Center

    Concatenates character strings and CLOB data. FROM employees. ORDER BY last_name; The result of concatenating two character strings is another character string. If both character …

  11. Some results have been removed
Refresh