SQL:数据类型转换

可以使用cast()convert()函数, 改变某一列的数据类型。
Sample:

SELECT age,
       cast(age as decimal) decimal_age, // 将age转化成浮点型(decimal)
       convert(age, char) char_age // 将age转化成在字符型(char)
FROM testChart
;
    原文作者:Live and learn 6688
    原文地址: https://blog.csdn.net/qq_34778597/article/details/119900094
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞