首页 > 其他 > 详细

str 函数 将小数转换为varchar类型

时间:2015-10-26 13:39:57      阅读:323      评论:0      收藏:0      [点我收藏+]

When you want to convert from float or real to character data, using the STR string function is usually more useful than CAST( ). This is because STR enables more control over formatting.

 

Syntax

STR ( float_expression [ , length [ , decimal ] ] )

Arguments                                               

float_expression                               

Is an expression of approximate numeric (float) data type with a decimal point.                

length                               

Is the total length. This includes decimal point, sign, digits, and spaces. The default is 10.

decimal                               

Is the number of places to the right of the decimal point. decimal must be less than or equal to 16. If decimal is more than 16 then the result is truncated to sixteen places to the right of the decimal point.

Return Type
  Varchar,
  To convert to Unicode data, use STR inside a CONVERT or CAST conversion function
示例
SELECT STR(123.45, 6, 1);

结果是 123.5,类型是Varchar

str 函数 将小数转换为varchar类型

原文:http://www.cnblogs.com/ljhdo/p/4910852.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!