Sql Server 常用函數

來源:互聯網
上載者:User
Sql Server 常用函數

1,統計函數 avg, count, max, min, sum  

多數聚會不統計值為null的行。可以與distinct一起使用去掉重複的行。可以與group by 來分組  

2, 數學函數  

SQRT  
ceiling(n) 返回大於或者等於n的最小整數  
floor(n), 返回小於或者是等於n的最大整數  
round(m,n), 四捨五入,n是保留小數的位元  
abs(n)  
sign(n), 當n>0, 返回1,n=0,返回0,n<0, 返回-1  
PI(), 3.1415....  
rand(),rand(n), 返回0-1之間的一個隨機數  
3,字串函數  

ascii(), 將字元轉換為ASCII碼, ASCII('abc') = 97  
char(), ASCII 碼 轉換為 字元  
low(),upper()  
str(a,b,c)轉換數字為字串。 a,是要轉換的字串。b是轉換以後的長度,c是小數位元。str(123.456,8,2) = 123.46  
ltrim(), rtrim() 去空格  
left(n), right(n), substring(str, start,length) 截取字串  
charindex(子串,母串),尋找是否包含。 返回第一次出現的位置,沒有返回0  
patindex('%pattern%', expression) 功能同上,可是使用萬用字元  
replicate('char', rep_time), 重複字串  
reverse(char),顛倒字串  
replace(str, strold, strnew) 替換字串  
space(n), 產生n個空行  
stuff(), SELECT STUFF('abcdef', 2, 3, 'ijklmn') ='aijklmnef', 2是開始位置,3是要從原來串中刪除的字元長度,ijlmn是要插入的字串。  
3,類型轉換函式:  

cast, cast( expression as data_type), Example:  
SELECT SUBSTRING(title, 1, 30) AS Title, ytd_sales FROM titles WHERE CAST(ytd_sales AS char(20)) LIKE '3%'  
convert(data_type, expression)  
4,日期函數  

day(), month(), year()  
dateadd(datepart, number, date), datapart指定對那一部分加,number知道加多少,date指定在誰的基礎上加。datepart的取值包括,year,quarter,month,dayofyear,day,week,hour,minute,second,比如明天dateadd(day,1, getdate())  
datediff(datepart,date1,date2). datapart和上面一樣。整個函數結果是date2 - date1  
datename(datepart, date) 取那一部分,返回字串。  
datepart(datepart, date) 取一部分,返回整數。  
getdate()目前時間  
5,系統函數  

col_length('tablename','colname')  
col_name, SELECT COL_NAME(OBJECT_ID('Employees'), 1) = EmployeeID  
datalength, example: datalenght('abc') =3, datalength(pub_name) --列名  
db_id

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.