Oracle function translate () Usage

Source: Internet
Author: User

I. Syntax:
TRANSLATE (string, from_str, to_str)
Ii. Purpose

Replace each character in from_str with a string after the corresponding character in to_str. TRANSLATE Is a superset of the functions provided by REPLACE. If from_str is longer than to_str, extra characters in from_str instead of to_str will be deleted from the string because they do not have replacement characters. To_str cannot be blank. Oracle interprets the NULL String as NULL. If any of the parameters in the TRANSLATE statement is NULL, the result is also NULL.

  1. SELECTTRANSLATE ('Abcdefghj','Abcdef','123')FROMDual;
  2. TRANSLATE (
  3. --------------
  4. 123456 ghij
  5. SELECTTRANSLATE ('Abcdefghj','Abcdefghj','123')FROMDual;
  6. TRANSL
  7. ----------
  8. 123456

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.