Convert a separator string to a temporary table in SQL

Source: Internet
Author: User

Problem: It is required to convert each content separated by a string 0, 1, 2, 3, 4, 5 into a row and record it in the database table.
Declare @ table _ string-to-array table (adapt_object int default 0)
Declare @ tmp_str varchar (100)
Declare @ tmp_index int
Select @ tmp_index = 1
Select @ tmp_str = '0, 03,4, 5, a, '-- assign test value
While (@ tmp_index> 0)
Begin
Select @ tmp_index = CHARINDEX (',', @ tmp_str) --, which is a separator
If (@ tmp_index> 0)
If (ISNUMERIC (substring (@ tmp_str, 1, @ tmp_index-1) = 1) -- only put data of the number type after separation and conversion to the temporary table
Insert into @ table _ string-to-array (adapt_object)
Select convert (int, substring (@ tmp_str, 1, @ tmp_index-1 ))
Select @ tmp_str = substring (@ tmp_str, @ tmp_index + 1,100)
End
Select * from @ table _ string-to-array

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.