sql字串處理

2021-06-18 20:11:53 字數 492 閱讀 4361

select '120.182296|30.263618'

select substring( '120.182296|30.263618',0,charindex( '|','120.182296|30.263618',0))

--得到120.182296

select substring( '120.182296|30.263618',charindex( '|','120.182296|30.263618',0)+1,len('120.182296|30.263618'))

--得到30.263618

select charindex( '|','120.182296|30.263618',0)

--得到|所在的位置

select length('資料字典/形象店檢查項/形象多點陳列/小型落地架') - length(replace('資料字典/形象店檢查項/形象多點陳列/小型落地架','/',''))

--得到指定字元在字串中出現的次數

sql字串處理函式

sql字串函式 2007年05月15日 星期二 09 05 sql字串函式 字串函式對二進位制資料 字串和表示式執行不同的運算。此類函式作用於char varchar binary 和varbinary 資料型別以及可以隱式轉換為char 或varchar的資料型別。可以在select 語句的sel...

SQL 字串處理函式

將字串中從某個字元開始擷取一段字元,然後將另外乙個字串插入此處 select stuff hello,world 4,4,返回值hel orld 返回從指定位置開始指定長度的字串 select substring hello,world 2,10 返回值ello,world 將字串中某段字元替換為指...

sql字串處理函式

1 upper 函式 upper characer expression characer expression 是由字元資料組成的表示式,可將表示式中部分全部轉成大寫字母 如 select upper hello output hello 2 initcap 函式 initcap expressi...