常用的数据类型转换函数
函数 | 说明 |
---|---|
convert() | 有两个参数,第一个为转换内容,第二个为转换类型; 如:convert(‘123’,unsigned integer); |
cast() | 只有一个参数,参数格式:转换内容 AS 转换类型; 如:cast(‘123’ as unsigned integer); |
2022-10-21 08:44:06
函数 | 说明 |
---|---|
convert() | 有两个参数,第一个为转换内容,第二个为转换类型; 如:convert(‘123’,unsigned integer); |
cast() | 只有一个参数,参数格式:转换内容 AS 转换类型; 如:cast(‘123’ as unsigned integer); |