A concise tutorial of SQL statements for Linux---concatenate

Source: Internet
Author: User

Sometimes, we need to concatenate the data obtained from different fields. Each database provides a way to achieve this:

    • Mysql:concat ()
    • Oracle:concat (), | |
    • SQL Server: +

The syntax for CONCAT () is as follows:

CONCAT (String 1, String 2, String 3, ...)

Concatenate string 1, String 2, String 3, and so on. Please note that Oracle's CONCAT () only allows two parameters, in other words, only two strings can be concatenated at a time. However, in Oracle, we can concatenate multiple strings at once with ' | | '.

Take a look at some examples. Suppose we have the following table:

Geography Form

Region_name Store_name
East Boston
East New York
West Los Angeles
West San Diego

Example 1

mysql/oracle:

SELECT CONCAT (Region_name, store_name) from Geography
WHERE store_name = ' Boston ';

Results:

' Eastboston '

Example 2

Oracle:

SELECT Region_name | | "| | Store_name from Geography
WHERE store_name = ' Boston ';

Results:

' East Boston '

Example 3

SQL Server:

SELECT region_name + "+ store_name from Geography
WHERE store_name = ' Boston ';

Results:

' East Boston '



Linux is measured as follows:



Reprint please specify: Xiao Liu


A concise tutorial of SQL statements for Linux---concatenate

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.