前台
var aa = datasource[i].fee;
var vv =aa.substring(0,aa.indexOf(".") +3);
后台
后台在sql语句中,去读取数据库里的数字,可以在sql语句中进行小数点的截取
CAST(withdrawalMoney as numeric(15,2)) as withdrawalMoney
时间的长度截取
CONVERT(varchar(10) , changeDate, 120) changeDate
补充
cast
cast()函数用于将某种数据类型的表达式显式转换为另一种数据类型,cast()的参数是一个表达式,cast(expression as data_type)
numeric(a,b)
numeric(a,b)函数有两个参数,前面一个为总的位数,后面一个参数是小数点后的位数
CONVERT() 函数
把日期转换为新数据类型的通用函数,可以用不同的格式显示日期/时间数据。
语法为:CONVERT(data_type(length),data_to_be_converted,style)
常用的style有:
120 :yyyy-mm-dd hh:mi:ss(24h);
102:yy.mm.dd;
网友评论