SQL擷取字串

iSQlServer發表於2010-03-31

SUBSTRING
返回字元、binary、text      或      image      表示式的一部分。有關可與該函式一起使用的有效      Microsoft®      SQL      Server™      資料型別的更多資訊,請參見資料型別。   

語法
SUBSTRING      (      expression      ,      start      ,      length      )   

引數
expression

是字串、二進位制字串、text、image、列或包含列的表示式。不要使用包含聚合函式的表示式。

start

是一個整數,指定子串的開始位置。

length

是一個整數,指定子串的長度(要返回的字元數或位元組數)。

substring()
——任意位置取子串

left()
right()
——左右兩端取子串

ltrim()
rtrim()
——截斷空格,沒有trim()。

charindex()
patindex()
——查子串在母串中的位置,沒有返回0。區別:patindex支援萬用字元,charindex不支援。

函式功效:
字串擷取函式,只限單位元組字元使用(對於中文的擷取時遇上奇數長度是會出現亂碼,需另行處理),本函式可擷取字串指定範圍內的字元。

應用範圍:
標題、內容擷取

函式格式:
string substr ( string string, int start [, int length])
引數1:處理字串
引數2:擷取的起始位置(第一個字元是從0開始)
引數3:擷取的字元數量
substr()更多介紹可在PHP官方手冊中查詢(字串處理函式庫)

舉例:
substr("ABCDEFG", 0);     //返回:ABCDEFG,擷取所有字元
substr("ABCDEFG", 2);     //返回:CDEFG,擷取從C開始之後所有字元
substr("ABCDEFG", 0, 3); //返回:ABC,擷取從A開始3個字元
substr("ABCDEFG", 0, 100); //返回:ABCDEFG,100雖然超出預處理的字串最長度,但不會影響返回結果,系統按預處理字串最大數量返回。
substr("ABCDEFG", 0, -3); //返回:EFG,注意引數-3,為負值時表示從尾部開始算起,字串排列位置不變

例子:


1.擷取已知長度的函式


  A.擷取從字串左邊開始N個字元

     Declare @S1 varchar(100)
     Select @S1='http://www.163.com'
     Select Left(@S1,4)
     ------------------------------------
     顯示結果: http

  B.擷取從字串右邊開始N個字元(例如取字元www.163.com)

     Declare @S1 varchar(100)
     Select @S1='http://www.163.com'
     Select right(@S1,11)  
     ------------------------------------
     顯示結果:
www.163.com

  C.擷取字串中任意位置及長度(例如取字元www)

     Declare @S1 varchar(100)
     Select @S1='http://www.163.com'
     Select SUBSTRING(@S1,8,3)  
     ------------------------------------
     顯示結果:
www.163.com

     以上例子皆是已知擷取位置及長度,下面介紹未知位置的例子

2.擷取未知位置的函式


  A.擷取指定字串後的字串(例如擷取http://後面的字串)

     方法一:

     Declare @S1 varchar(100)
     Select @S1='http://www.163.com'  
     Select Substring(@S1,CHARINDEX('www',@S1)+1,Len(@S1))
     /*此處也可以這樣寫:Select Substring(@S1,CHARINDEX('//',@S1)+2,Len(@S1))*/

     ------------------------------------
     顯示結果:
www.163.com


     需要注意:CHARINDEX函式搜尋字串時,不區分大小寫,因此CHARINDEX('www',@S1)也可以寫成CHARINDEX('WWW',@S1)

     方法二:(與方法一類似)

     Declare @S1 varchar(100)
     Select @S1='http://www.163.com'  
     Select Substring(@S1,PATINDEX('%www%',@S1)+1,Len(@S1))
     --此處也可以這樣寫:Select Substring(@S1,PATINDEX('%//%',@S1)+2,Len(@S1))
     ------------------------------------
     顯示結果:
www.163.com  

   函式PATINDEX與CHARINDEX區別在於:前者可以引數一些引數,增加查詢的功能

     方法三:

     Declare @S1 varchar(100)
     Select @S1='http://www.163.com'  
     Select REPLACE(@S1,'http://','')
     ------------------------------------
     顯示結果:
www.163.com

  利用字元替換函式REPLACE,將除需要顯示字串外的字元替換為空

     方法四:

     Declare @S1 varchar(100)
     Select @S1='http://www.163.com'  
     Select STUFF(@S1,CHARINDEX('http://',@S1),Len('http://'),'')
     ------------------------------------
     顯示結果:
www.163.com  

  函式STUFF與REPLACE區別在於:前者可以指定替換範圍,而後者則是全部範圍內替換

  B.擷取指定字元後的字串(例如擷取C:\Windows\test.txt中檔名)
       與A不同的是,當搜尋物件不是一個時,利用上面的方法只能搜尋到第一個位置

     方法一:

     Declare @S1 varchar(100)
     Select @S1='C:\Windows\test.txt'
     select right(@S1,charindex('\',REVERSE(@S1))-1)
     -------------------------------------
     顯示結果: text.txt


利用函式REVERSE獲取需要擷取的字串長度

  

substr()

例子:

private void DDL_AreaBind()
          {
              conn = new SqlConnection(ConfigurationManager.ConnectionStrings["strcon"].ConnectionString);
              string str = "0000";
              cmd = new SqlCommand("select AreaID,Name=ltrim(Name) from Area where    right(AreaID,4) ='" + str + "'", conn);
              SqlDataAdapter sda = new SqlDataAdapter(cmd);
              sda.Fill(ds, "area");
              this.ddl_area.DataSource = ds.Tables["area"].DefaultView;
              this.ddl_area.DataTextField = "Name";
              this.ddl_area.DataValueField = "AreaID";
              this.ddl_area.DataBind();

            
              cmd = new SqlCommand("select * from Area    ", conn);
              cmd.CommandType = CommandType.Text;
              SqlDataAdapter adapter = new SqlDataAdapter(cmd);
              adapter.Fill(ds, "city");
              this.ddl_city.DataSource = ds.Tables["city"].DefaultView;
              this.ddl_city.DataTextField = "Name";
              this.ddl_city.DataValueField = "AreaID";
              this.ddl_city.DataBind();
          }

protected void ddl_area_SelectedIndexChanged(object sender, EventArgs e)
          {
              conn = new SqlConnection(ConfigurationManager.ConnectionStrings["strcon"].ConnectionString);
              this.ddl_city.Enabled = true;
              string str1="0000";
              cmd = new SqlCommand("select AreaID,Name from Area where substring(AreaID,1,2)='" + this.ddl_area.SelectedValue.Substring(0,2)    + "' AND substring(AreaID,3,4) <> '0000' AND substring(AreaID,5,2)='00'    ", conn);
              cmd.CommandType = CommandType.Text;
              SqlDataAdapter adapter = new SqlDataAdapter(cmd);
              DataSet ds = new DataSet();
              adapter.Fill(ds, "city");
              this.ddl_city.DataSource = ds.Tables["city"].DefaultView;
              this.ddl_city.DataTextField = "Name";
              this.ddl_city.DataValueField = "AreaID";
              this.ddl_city.DataBind();
          }

 

PS:

最近專案中用到比較少見的SQL語句,分享一下:

查詢祖先節點
select * from 目錄表_資料庫  where ID<>-1 and datatype<>1 and datatype<>2 connect by prior FATHERID=ID start with ID=28 order by 目錄級別,ID

查詢子孫節點:
select * from 目錄表_資料庫  where ID<>-1 and datatype<>1 and datatype<>2 connect by prior ID=FATHERID start with ID=28 order by 目錄級別,ID

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/16436858/viewspace-630939/,如需轉載,請註明出處,否則將追究法律責任。

相關文章