那这个是干嘛用的?
CONVERT
将特定表达式转换为指定数据类型类型。
语法 |
Convert(expression, type) |
参数 |
expression — 要转换的表达式。 type — 值将转换成的数据类型,包括有:
System.String:字符型 System.DateTime:日期时间型 System.Boolean:逻辑型 System.Byte:微整数 System.Int16:短整数 System.Int32:整数 System.Int64:长整数 System.Single:单精度小数 System.Double:双精度小数 System.Decimal:高精度小数。 |
所有转换都是有效的,只有下列情况例外:Boolean 只能与 Byte、SInt16、Int32、Int64、String 和它本身相互转换;DateTime 只能与 String 和它本身相互转换。
例如:
Convert([金额], 'System.Int32')
表示将金额数据转换为整数。