SQL中类型转换函数
1.cast
cast(表达式 as 数据类型)
select 100.0 +cast(‘1000‘ as int) -- 1100.0 默认把字符串转换成浮整形
2.convert 万能转换
convert(数据类型,表达式)
select 100.0 + convert(int,‘1000‘)-- 1100.0 默认把字符串转换成整形
3.select * from student order by convert (int,bid) desc --bid列按照降序来排列,bid是varchar类型
4.print convert(varchar(10),getdate(),120) --日期转换varchar(10)表示显示的字符长度,120表示style,可以在SSMS 帮助中查看详情
5.cast不可以转换日期类型,convert可以通用
相关推荐
houdaxiami 2019-03-25
blncle 2020-02-11
zlsdmx 2020-05-14
eroshn 2020-05-11
zluxingzhe 2020-02-29
xuanlvhaoshao 2020-01-23
wklken的笔记 2020-01-05
宿舍 2019-12-20
明月清风精进不止 2019-10-23
Ongoingcre 2011-09-22
jsoncorleone 2016-02-25
kekekid 2010-04-04
宁静致远 2009-06-09
timewind 2019-07-01
jsqip 2019-07-01
UsherOu 2013-02-25
静心斋 2016-03-11
ScarletLina 2011-04-09
superhosts 2019-06-26