Oracle concatenates values of different columns into a string

Source: Internet
Author: User
Oracle concatenates values of different columns into a string-use the concatenation operator ldquo; | rdquo; or CONCAT (

Oracle concatenates values of different columns into a string-use the concatenation operator ldquo; | rdquo; or CONCAT (

Oracle concatenates values of different columns into a string

-- Concatenates values of different columns into a string using the concatenation operator "|" or CONCAT ('','').

-- Method 1: Recommended
Select s. TEAM | '**' | S. NAME | '**' | S. JOB_NUMBER
From staff s where s. PASS = '20180101' and s. TEAM = 'south'

-- Method 2: tedious.
Select concat (S. TEAM, '**'), S. NAME), '**'), S. JOB_NUMBER)
From staff s where s. PASS = '20180101' and s. TEAM = 'south'

-- The results are the same as follows:
South China ** Chen moumou ** 110320
South ** Peng moumou ** 119008
South ** Huang moumou ** 119083

,

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.