SQL SERVER中強制類型轉換cast和convert的區別

在SQL SERVER中,cast和convert函數都可用於類型轉換,其功能是相同的,

只是語法不同.

cast一般更容易使用,convert的優點是可以格式化日期和數值.

 

select CAST('123' as int)   -- 123
select CONVERT(int, '123')  -- 123
select CAST(123.4 as int)   -- 123
select CONVERT(int, 123.4)  -- 123 
select CAST('123.4' as int)
select CONVERT(int, '123.4')
-- Conversion failed when converting the varchar value '123.4' to data type int.
select CAST('123.4' as decimal)  -- 123
select CONVERT(decimal, '123.4') -- 123 
select CAST('123.4' as decimal(9,2))  -- 123.40
select CONVERT(decimal(9,2), '123.4') -- 123.40
declare @Num money
set @Num = 1234.56
select CONVERT(varchar(20), @Num, 0)  -- 1234.56
select CONVERT(varchar(20), @Num, 1)  -- 1,234.56
select CONVERT(varchar(20), @Num, 2)  -- 1234.5600

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章