sql server2012中的format


【1】基本介紹

本文主要介紹的是使用 FORMAT函數將日期/時間和數字值格式化為識別區域設置的字符串。下面話不多說,來看詳細的介紹吧。

format(value,format,culture)

第一個參數是要格式化的值,第二個是格式,第三個是區域,比如是中國,還是美國,還是大不列顛等等。

FORMAT 依賴於 .NET Framework公共語言運行時 (CLR) 的存在。

declare @date datetime = '2014-01-01'
select FORMAT( @date, 'd', 'en-US' ) as 'US English Result'
 ,FORMAT( @date, 'd', 'en-gb' ) as 'Great Britain English Result'
 ,FORMAT( @date, 'd', 'de-de' ) as 'German Result'
 ,FORMAT( @date, 'd', 'zh-cn' ) as 'Simplified Chinese (PRC) Result'; 
  
select FORMAT( @date, 'D', 'en-US' ) as 'US English Result'
 ,FORMAT( @date, 'D', 'en-gb' ) as 'Great Britain English Result'
 ,FORMAT( @date, 'D', 'de-de' ) as 'German Result'
 ,FORMAT( @date, 'D', 'zh-cn' ) as 'Chinese (Simplified PRC) Result'; 
/* 
USEnglish Result Great BritainEnglish Result German Result Simplified Chinese (PRC) Result 
------------------------------------------------------------- ------------------------------------------------------------ 
1/1/2014  01/01/2014  01.01.2014  2014/1/1 
  
  
USEnglish Result Great BritainEnglish Result German Result Chinese (Simplified PRC) Result 
------------------------------------------------------------- ------------------------------------------------------------ 
Wednesday,January 01, 2014 01 January 2014  Mittwoch, 1. Januar 2014 2014年1月1日 
*/

 

【2】實例演示

【2.1】得到'2014年01月01日的結果

select FORMAT( getdate(), 'yyyy年MM月dd日', 'zh-cn') as 當前日期 

  

 

【2.2】貨幣轉換

FORMAT除了日期以外,還可以處理一些數字格式和貨幣格式類型的轉換

if object_id('[tb]') is not null drop table [tb] 
create table [tb]([id] int,[NumericValue] numeric(3,2)) 
insert [tb] 
select 1,1.26 union all
select 2,2.78 union all
select 3,9.83 
  
select *, 
 FORMAT([NumericValue], 'G', 'en-us') as 'General Format', 
 FORMAT([NumericValue], 'C', 'en-us') as 'Currency Format', 
 FORMAT([NumericValue], 'G', 'de-de') as 'General Format', 
 FORMAT([NumericValue], 'C', 'de-de') as 'Currency Format'
from [tb] 
/* 
id NumericValue General Format Currency Format General Format Currency Format 
------------------- ---------------- ----------------- ----------------------------------------- 
1 1.26 1.26 $1.26 1,26 1,26 € 
2 2.78 2.78 $2.78 2,78 2,78 € 
3 9.83 9.83 $9.83 9,83 9,83 € 
*/

 【2.3】解決convert的日期格式轉換,使用format輕松解決

  

 

 再也不用記 什么 convert(char(10),getdate(),120) 了


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM