码迷,mamicode.com
首页 > 数据库 > 详细

mysql将字符串转成数字

时间:2020-12-04 11:19:26      阅读:25      评论:0      收藏:0      [点我收藏+]

标签:字符串   val   mount   排列   sele   nsa   color   分组   rgb   

今天写sql语句时,相对字符串类型的数字进行排序,怎么做呢?

需要先转换成数字再进行排序

1.直接用加法

  字符串+0

eg:

  select * from orders order by (mark+0)  desc

eg:

以分类字段进行分组,获取分类总数amount,和qty(数量),最后以amount进行有大到小的倒序排列

SELECT category_code,SUM(transaction_number) as qty ,FORMAT(SUM(number*price),2)+0 as amount FROM sell WHERE date=‘2017-03-06‘ GROUP BY category_code ORDER BY amount DESC;

2.使用函数

CAST(value as type);

CONVERT(value, type);

注:

  这里的type可以为:

    浮点数 : DECIMAL 
    整数 : SIGNED
    无符号整数 : UNSIGNED 

eg:

  select * from orders order by CONVERT(mark,SIGNED)  desc

  select * from orders order by CAST(mark as SIGNED)  desc

mysql将字符串转成数字

标签:字符串   val   mount   排列   sele   nsa   color   分组   rgb   

原文地址:https://www.cnblogs.com/xiaofeilin/p/14060367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!