---返回表示式中指定字元的開始位置
select charindex('c','abcdefg',1)
---兩個字元的值之差
select difference('bet','bit')
---字元最左側指定數目
select left('abcdef',3)
---返回字元數
select len('abcdefg')
--轉換為小字元
select lower('abcdefg')
--去左空格後
select ltrim(' abcdef')
---返回指定第一次出現的開始位置
select patindex('%_cd%','abcdef')
---替換
select replace('abcdef','cd','xx')
---替換多個字元
select replace(replace('@22"33"','@',''),'"','')
--重複表示式
select replicate('abc',4)
---逆向表示式
select reverse('abc')---cba
--返回右側指定數目
select right('abcd',2)
---去右空格
select rtrim('abcd ')
---soundex**
select soundex('abd')
--空格字串
select space(1)
---轉換字串
select str(100)
---刪除指定長度字元,並把指定起點插入另一字元
select stuff('abcdef',2,4,'***')
---擷取字元
select substring('abcdef',2,3)
---轉換大寫
select upper('abc')
----取時間整數(year,month,day,hour,minute,second)
select datepart(month,getdate())
---兩個時間比較
select datediff(month,'2010-02-01','2010-02-18')
---時間相加減
select dateadd(month,-4,getdate())
sql基本函式大全
sqlserver基本函式 1.字串函式長度與分析用 datalength char expr 返回字串包含字元數,但不包含後面的空格 substring expression,start,length 不多說了,取子串 right char expr,int expr 返回字串右邊int expr...
SQL函式大全及示例彙總
3 日期函式 4 數字函式 5 字串函式 6 系統函式 7 文字和影象函式 sql中包含以下七種型別的函式 聚合函式 返回彙總值。轉型函式 將一種資料型別轉換為另外一種。日期函式 處理日期和時間。數學函式 執行算術運算。字串函式 對字串 二進位制資料或表示式執行操作。系統函式 從資料庫返回在sqls...
SQL字串函式大全 日期函式
day day 函式語法如下 day day 函式返回date expression 中的日期值。month month 函式語法如下 month month 函式返回date expression 中的月份值。與day 函式不同的是,month 函式的引數為整數時,一律返回整數值1,即sql se...