SQL點滴之一個簡單的字串分割函數

來源:互聯網
上載者:User

編者註:在上一篇《SQL點滴之SET QUOTED_IDENTIFIER OFF語句的作用》筆者總結了SET QUOTED_IDENTIFIER 的用法,這一篇筆者介紹了一個簡單的字串分割函數。

偶然在電腦裡看到以前儲存的這個函數,是將一個單獨字串切分成一組字串,這裡分隔字元是英文逗號“,”  遇到其他情況只要稍加修改就好了

 
  1. CREATE FUNCTION dbo.f_splitstr(  
  2.  
  3.     @str varchar(8000)  
  4. )RETURNS @r TABLE(id int IDENTITY(1, 1), value varchar(5000))  
  5. AS 
  6. BEGIN 
  7.  /* Function body */  
  8.     DECLARE @pos int 
  9.     SET @pos = CHARINDEX(',', @str)  
  10.     WHILE @pos > 0  
  11.     BEGIN 
  12.         INSERT @r(value) VALUES(LEFT(@str, @pos - 1))  
  13.         SELECT   
  14.             @str = STUFF(@str, 1, @pos, ''),  
  15.             @pos = CHARINDEX(',', @str)  
  16.     END 
  17.     IF @str > '' 
  18.         INSERT @r(value) VALUES(@str)  
  19.     RETURN 
  20.  
  21. END 
  22.  

如下

 

原文連結:http://www.cnblogs.com/tylerdonet/archive/2010/09/22/1833136.html


 

相關文章

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.