About 10,200,000 results
Open links in new tab
  1. sql - How to replace specific values in a oracle database column ...

    Use REPLACE: SELECT REPLACE(t.column, 'est1', 'rest1') FROM MY_TABLE t If you want to update the values in the table, use: UPDATE MY_TABLE t SET column = REPLACE(t.column, …

  2. Oracle ALTER TABLE MODIFY Column - Oracle Tutorial

    This tutorial shows you how to use the Oracle ALTER TABLE MODIFY column statement to change the definition of existing columns in a table.

  3. Oracle REPLACE Function Usage, Tips & Examples - Database Star

    Jun 9, 2023 · Can Oracle Replace a String In A Column? Yes, it can. This is relatively simple to do. You’ll need to know both the string you’re replacing and the string you’re replacing it with. …

  4. SQL Tips: How to replace a character or a part of a string in a column ...

    Jul 3, 2023 · The solution was to use the REPLACE SQL function. This is the form of the UPDATE statement that uses the REPLACE function Update TABLENAME Set …

  5. Using replace with select statement for a specific column in SQL oracle

    Nov 12, 2013 · I only wish to replace the "-" in the PROFESSION column with a '/'. What should be the query to display ALL contents of the table INFO , with the above mentioned change? I …

  6. Replacing Values In Oracle Database Columns A How To Guide

    Nov 22, 2024 · Do you need to replace certain values in an Oracle database column? This guide will walk you through the steps needed to update values in a particular column. We will explore …

  7. REPLACE - Oracle Help Center

    REPLACE provides functionality related to that provided by the TRANSLATE function. TRANSLATE provides single-character, one-to-one substitution. REPLACE lets you substitute …

  8. Oracle REPLACE Function

    Here’s the syntax of the Oracle REPLACE() function: The Oracle REPLACE() function accepts three arguments: 1) string_expression. is a string (or an expression that evaluates to a string) …

  9. How to Replace Special Characters in Oracle SQL

    Aug 31, 2017 · In Oracle SQL, you have three options for replacing special characters: Using the REPLACE function; Using the REGEXP_REPLACE function; Using the TRANSLATE function; …

  10. How to Use the SQL REPLACE () Function - DataCamp

    Jul 8, 2024 · The REPLACE() function in SQL searches for the specified substring or string in a column and replaces it with another given string. The example below shows the basic use of …

  11. Some results have been removed
Refresh