可以使用cast()
和 convert()
函数, 改变某一列的数据类型。
Sample:
SELECT age,
cast(age as decimal) decimal_age, // 将age转化成浮点型(decimal)
convert(age, char) char_age // 将age转化成在字符型(char)
FROM testChart
;
可以使用cast()
和 convert()
函数, 改变某一列的数据类型。
Sample:
SELECT age,
cast(age as decimal) decimal_age, // 将age转化成浮点型(decimal)
convert(age, char) char_age // 将age转化成在字符型(char)
FROM testChart
;