在mysql中计算百分比,用到了concat()和left() 两个函数
1、CONCAT(str1,str2,...) select CONCAT('My', 'S', 'QL'); -> 'MySQL' select CONCAT('My', NULL, 'QL'); -> NULL select CONCAT(14.3); -> '14.3'
2、LEFT(str,length) 结合1、2 :concat ( left (数值1 / 数值2 *100,5),'%') as 百分比 (责任编辑:最模板) |