SQL function Learning (16): STUFF () function

Source: Internet
Author: User

16.STUFF () function

The STUFF () function deletes characters of a specified length and can insert another set of characters at the point at which it was established.

16.1 STUFF () function syntax

Select Stuff (column name, start position, length, substitution string)

16.1STUFF () Function instance



Requirement: Remove three characters after the seventh character of the Chinese name.

Select Chinese name, Stuff (Chinese name, 7,3, ') as new
From GDBZ

Execution Result:



Requirement: Remove the three characters after the seventh character of the Chinese name, and replace the deleted characters with "I Love You".

The statements are as follows:

Select Chinese name, Stuff (Chinese name, 7, 3, ' I Love You ') as new
From GDBZ

Execution Result:


Note: When the start position and the length are negative, "null" is returned.

Original reprint Office http://blog.sina.com.cn/s/blog_5f0493880100ttpp.html

SQL function Learning (16): STUFF () function

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.