SQL Server函數大全

來源:互聯網
上載者:User

SQL Server函數大全 

--彙總函式
use pubs
go
select avg(distinct price)  --算平均數
from titles
where type='business'

use pubs
go
select max(ytd_sales)  --最大數
from titles

use pubs
go
select min(ytd_sales) --最小數
from titles

use pubs
go
select type,sum(price),sum(advance)  --求和
from titles
group by type  order by type

use pubs
go
select count(distinct city)  --求個數
from authors

use pubs
go
select stdev(royalty) --返回給定運算式中所有值的統計標準差
from titles

use pubs
go
select stdevp(royalty) --返回運算式中所有制的填充統計標準差
from titles

use pubs
go
select var(royalty) --返回所有值的統計方差
from titles

use pubs
go
select varp(royalty) --返回所有值的填充的統計方差
from titles

--數學函數

select sin(23.45),atan(1.234),rand(),PI(),sign(-2.34) --其中rand是獲得一個隨機數

--配置函數
SELECT @@VERSION --擷取當前資料庫版本
SELECT @@LANGUAGE --當前語言

--時間函數
select getdate() as 'wawa_getdate' --目前時間
select getutcdate() as 'wawa_getutcdate' --擷取utc時間
select day(getdate()) as 'wawa_day' --取出天
select month(getdate()) as 'wawa_month' --取出月
select year(getdate()) as 'wawa_year' --取出年
select dateadd(d,3,getdate()) as wawa_dateadd --加三天,注意'd'表示天,'m'表示月,'yy'表示年,下面一樣
select datediff(d,'2004-07-01','2004-07-15') as wawa_datediff --計算兩個時間的差
select datename(d,'2004-07-15') as wawa_datename --取出時間的某一部分
select datepart(d,getdate()) as wawa_datepart  --取出時間的某一部分,和上面的那個差不多

--字串函數
select ascii(123) as '123',ascii('123') as '"123"',ascii('abc') as '"abc"' --轉換成ascii碼
select char(123),char(321),char(-123) --根據ascii轉換成字元
select lower('ABC'),lower('Abc'),upper('Abc'),upper('abc') --轉換大小寫
select str(123.45,6,1), str(123.45,2,2) --把數值轉換成字串
select ltrim('    "左邊沒有空格"')  --去空格
select rtrim('"右邊沒有空格"     ') --去空格
select ltrim(rtrim('   "左右都沒有空格"    ')) --去空格
select left('sql server',3),right('sql server',6) --取左或者取右

use pubs
select au_lname,substring(au_fname,1,1) --取子串
from authors
order by au_lname

select charindex('123','abc123def',2) --返回字串中指定運算式的起始位置
select patindex('123','abc123def'),patindex('%123%','abc123def') --返回運算式中某模式第一次出現的起始位置
select quotename('abc','{'),quotename('abc') --返回由指定字元擴住的字串
select reverse('abc'),reverse('上海') --顛倒字串順序
select replace('abcdefghicde','cde','xxxx') --返回唄替換了指定子串的字串
select space(5),space(-2)

--系統函數
select host_name() as 'host_name',host_id() as 'host_id',user_name() as 'user_name',user_id() as 'user_id',db_name() as 'db_name'

--變數的定義使用
--聲明局部變數
declare @mycounter int
declare @last_name varchar(30),@fname varchar(20),@state varchar(2)

--一下聲明多個變數
--給變數賦值
use northwind
go
declare @firstnamevariable varchar(20),
 @regionvariable varchar(30)
set @firstnamevariable='anne' --可以用set,也可以用select給變數賦值,微軟推薦用set,但select在選擇一個值直接賦值時很有用
set @regionvariable ='wa'

select lastname,firstname,title  --用聲明並賦值過的變數構建一個Select語句並查詢
from employees
where firstname= @firstnamevariable or region=@regionvariable
go
--全域變數
select @@version  --返回資料庫版本
select @@error  --返回最後的一次指令碼錯誤
select @@identity  --返回最後的一個自動成長列的id

--while,break,continue的使用
--首先計算所有數的平均價格,如果低於30的話進入迴圈讓所有的price翻倍,
--裡面又有個if來判斷如果最大的單價還大於50的話,退出迴圈,否則繼續迴圈,知道最大單價大於50就break出迴圈,呵呵,
--我分析的應該對吧.
use pubs
go
while (select avg(price) from titles) <$30
begin
 update titles
  set price=price*2
  select max(price) from titles
  if(select max(price) from titles) >$50
  break
  else
  continue
end
print 'too much for the marker to bear'

--事務編程經典例子
--begin transaction是開始事務,commit transaction是提交事務,rollback transaction是復原事務
--這個例子是先插入一條記錄,如果出現錯誤的話就復原事務,也就是取消,並直接return(返回),如果沒錯的話就commit 提交這個事務了哦
--上面的那個return返回可以返回一個整數值,如果這個值是0的話就是執行的時候沒出錯,如果出錯了就是一個負數,
--這個return也可以用在預存程序中,可用用 exec @return_status= pro_name來擷取這個值
use pubs
go
begin tran mytran
 insert into stores(stor_id,stor_name)
  values('333','my books')
 go
 insert into discounts(discounttype,stor_id,discount)
  values('清倉甩賣','9999',50.00)
 if @@error<>0
  begin
   rollback tran mytran
   print '插入打折記錄出錯'
   return
  end
commit tran mytran

--交易處理的儲存點樣本
--做了事務儲存點後可以rollback(復原)到指定的儲存點,不至於所有的操作都不能用
use pubs
go
select * from stores
begin transaction testsavetran
 insert into stores(stor_id,stor_name)
  values('1234','W.Z.D Book')
 save transaction before_insert_data2
 go
 insert into stores(stor_id,stor_name)
  values('5678','foreat Books')
 go
rollback transaction before_insert_data2
select * from stores

--儲存預存程序
use pubs
if exists(select name from sysobjects where name= 'proc_calculate_taxes' and type='P')
 drop procedure proc_calculate_taxes
go
create procedure proc_calculate_taxes (@p1 smallint=42,@p2 char(1),@p3 varchar(8)='char')
as
select *
from titles
--執行過程
EXECUTE PROC_CALCULATE_TAXES @P2='A'

--彙總函式
use pubs
go
select avg(distinct price)  --算平均數
from titles
where type='business'

use pubs
go
select max(ytd_sales)  --最大數
from titles

use pubs
go
select min(ytd_sales) --最小數
from titles

use pubs
go
select type,sum(price),sum(advance)  --求和
from titles
group by type  order by type

use pubs
go
select count(distinct city)  --求個數
from authors

use pubs
go
select stdev(royalty) --返回給定運算式中所有值的統計標準差
from titles

use pubs
go
select stdevp(royalty) --返回運算式中所有制的填充統計標準差
from titles

use pubs
go
select var(royalty) --返回所有值的統計方差
from titles

use pubs
go
select varp(royalty) --返回所有值的填充的統計方差
from titles

--數學函數

select sin(23.45),atan(1.234),rand(),PI(),sign(-2.34) --其中rand是獲得一個隨機數

--配置函數
SELECT @@VERSION --擷取當前資料庫版本
SELECT @@LANGUAGE --當前語言

--時間函數
select getdate() as 'wawa_getdate' --目前時間
select getutcdate() as 'wawa_getutcdate' --擷取utc時間
select day(getdate()) as 'wawa_day' --取出天
select month(getdate()) as 'wawa_month' --取出月
select year(getdate()) as 'wawa_year' --取出年
select dateadd(d,3,getdate()) as wawa_dateadd --加三天,注意'd'表示天,'m'表示月,'yy'表示年,下面一樣
select datediff(d,'2004-07-01','2004-07-15') as wawa_datediff --計算兩個時間的差
select datename(d,'2004-07-15') as wawa_datename --取出時間的某一部分
select datepart(d,getdate()) as wawa_datepart  --取出時間的某一部分,和上面的那個差不多

--字串函數
select ascii(123) as '123',ascii('123') as '"123"',ascii('abc') as '"abc"' --轉換成ascii碼
select char(123),char(321),char(-123) --根據ascii轉換成字元
select lower('ABC'),lower('Abc'),upper('Abc'),upper('abc') --轉換大小寫
select str(123.45,6,1), str(123.45,2,2) --把數值轉換成字串
select ltrim('    "左邊沒有空格"')  --去空格
select rtrim('"右邊沒有空格"     ') --去空格
select ltrim(rtrim('   "左右都沒有空格"    ')) --去空格
select left('sql server',3),right('sql server',6) --取左或者取右

use pubs
select au_lname,substring(au_fname,1,1) --取子串
from authors
order by au_lname

select charindex('123','abc123def',2) --返回字串中指定運算式的起始位置
select patindex('123','abc123def'),patindex('%123%','abc123def') --返回運算式中某模式第一次出現的起始位置
select quotename('abc','{'),quotename('abc') --返回由指定字元擴住的字串
select reverse('abc'),reverse('上海') --顛倒字串順序
select replace('abcdefghicde','cde','xxxx') --返回唄替換了指定子串的字串
select space(5),space(-2)

--系統函數
select host_name() as 'host_name',host_id() as 'host_id',user_name() as 'user_name',user_id() as 'user_id',db_name() as 'db_name'

--變數的定義使用
--聲明局部變數
declare @mycounter int
declare @last_name varchar(30),@fname varchar(20),@state varchar(2)

--一下聲明多個變數
--給變數賦值
use northwind
go
declare @firstnamevariable varchar(20),
 @regionvariable varchar(30)
set @firstnamevariable='anne' --可以用set,也可以用select給變數賦值,微軟推薦用set,但select在選擇一個值直接賦值時很有用
set @regionvariable ='wa'

select lastname,firstname,title  --用聲明並賦值過的變數構建一個Select語句並查詢
from employees
where firstname= @firstnamevariable or region=@regionvariable
go
--全域變數
select @@version  --返回資料庫版本
select @@error  --返回最後的一次指令碼錯誤
select @@identity  --返回最後的一個自動成長列的id

--while,break,continue的使用
--首先計算所有數的平均價格,如果低於30的話進入迴圈讓所有的price翻倍,
--裡面又有個if來判斷如果最大的單價還大於50的話,退出迴圈,否則繼續迴圈,知道最大單價大於50就break出迴圈,呵呵,
--我分析的應該對吧.
use pubs
go
while (select avg(price) from titles) <$30
begin
 update titles
  set price=price*2
  select max(price) from titles
  if(select max(price) from titles) >$50
  break
  else
  continue
end
print 'too much for the marker to bear'

--事務編程經典例子
--begin transaction是開始事務,commit transaction是提交事務,rollback transaction是復原事務
--這個例子是先插入一條記錄,如果出現錯誤的話就復原事務,也就是取消,並直接return(返回),如果沒錯的話就commit 提交這個事務了哦
--上面的那個return返回可以返回一個整數值,如果這個值是0的話就是執行的時候沒出錯,如果出錯了就是一個負數,
--這個return也可以用在預存程序中,可用用 exec @return_status= pro_name來擷取這個值
use pubs
go
begin tran mytran
 insert into stores(stor_id,stor_name)
  values('333','my books')
 go
 insert into discounts(discounttype,stor_id,discount)
  values('清倉甩賣','9999',50.00)
 if @@error<>0
  begin
   rollback tran mytran
   print '插入打折記錄出錯'
   return
  end
commit tran mytran

--交易處理的儲存點樣本
--做了事務儲存點後可以rollback(復原)到指定的儲存點,不至於所有的操作都不能用
use pubs
go
select * from stores
begin transaction testsavetran
 insert into stores(stor_id,stor_name)
  values('1234','W.Z.D Book')
 save transaction before_insert_data2
 go
 insert into stores(stor_id,stor_name)
  values('5678','foreat Books')
 go
rollback transaction before_insert_data2
select * from stores

--儲存預存程序
use pubs
if exists(select name from sysobjects where name= 'proc_calculate_taxes' and type='P')
 drop procedure proc_calculate_taxes
go
create procedure proc_calculate_taxes (@p1 smallint=42,@p2 char(1),@p3 varchar(8)='char')
as
select *
from titles
--執行過程
EXECUTE PROC_CALCULATE_TAXES @P2='A'

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.