Details

    • Sub-task
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.4.0
    • 1.4.0
    • Table SQL / API
    • None

    Description

      CONCAT(str1,str2,...)Returns the string that results from concatenating the arguments. May have one or more arguments. If all arguments are nonbinary strings, the result is a nonbinary string. If the arguments include any binary strings, the result is a binary string. A numeric argument is converted to its equivalent nonbinary string form.

      CONCAT() returns NULL if any argument is NULL.

      • Syntax:
        CONCAT(str1,str2,...)
      • Arguments
        • str1,str2,... -
      • Return Types
        string
      • Example:
        CONCAT('F', 'lin', 'k') -> 'Flink'
        CONCAT('M', NULL, 'L') -> NULL
        CONCAT(14.3) -> '14.3'

      CONCAT_WS() stands for Concatenate With Separator and is a special form of CONCAT(). The first argument is the separator for the rest of the arguments. The separator is added between the strings to be concatenated. The separator can be a string, as can the rest of the arguments. If the separator is NULL, the result is NULL.

      • Syntax:
        CONCAT_WS(separator,str1,str2,...)
      • Arguments
        • separator -
        • str1,str2,... -
      • Return Types
        string
      • Example:
        CONCAT_WS(',','First name','Second name','Last Name') -> 'First name,Second name,Last Name'

      Attachments

        Issue Links

          Activity

            People

              sunjincheng121 sunjincheng
              sunjincheng121 sunjincheng
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: