Change Password

Please enter the password.
Please enter the password. Between 8-64 characters. Not identical to your email address. Contain at least 3 of: uppercase, lowercase, numbers, and special characters.
Please enter the password.
Submit

Change Nickname

Current Nickname:
Submit

Apply New License

License Detail

Please complete this required field.

  • Ultipa Graph V4

Standalone

Please complete this required field.

Please complete this required field.

The MAC address of the server you want to deploy.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Applied Validity Period(days)
Effective Date
Excpired Date
Mac Address
Apply Comment
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
  • Country:
  • Language:
Change Password
Apply

You have no license application record.

Apply
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

Product Created On ID Amount (USD) Invoice
Product Created On ID Amount (USD) Invoice

No Invoice

Search
    English

      JSON_merge()

      Overview

      The JSON_merge() function merges two JSON-formatted strings into a new JSON-formatted string and returns the result. When there are conflicting keys between the two input strings, the values from the second string take precedence in the merged output.

      Syntax

      JSON_merge(str_1, str_2)

      Augment Type
      Description
      str_1 String The first JSON-formatted string
      str_2 String The second JSON-formatted string

      Return type: String

      Example of Result

      return JSON_merge('{"name":"Lisa","age":23}','{"name":"Lisa","age":30,"interest":"football"}')
      

      Result: {"age":30,"interest":"football","name":"Lisa"}

      It's advisable to use distinct quotation marks (" or ') within JSON objects and to encapsulate the two input strings. The pairing of these quotation marks is essential for the correct parsing of the statement.

      Example of Use

      Consolidate information from different sources into a single JSON object, preserving unique keys and their corresponding values.

      with '{
        "name": "John Doe",
        "age": 30,
        "city": "New York"
      }' as s1
      with '{
        "name": "John Doe",
        "age": 29,
        "email": "[email protected]"
      }' as s2
      return JSON_merge(s1, s2)
      

      Result: {"age":29,"city":"New York","email":"[email protected]","name":"John Doe"}

      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写