SQL中类型转换函数
Posted Ov3r潮汐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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可以通用
以上是关于SQL中类型转换函数的主要内容,如果未能解决你的问题,请参考以下文章