作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
本质上,我的 mySQL 数据库中有一个列,其中包含如下时间间隔:
8:00 am - 12:00 pm
该列接受 VARCHAR
值。
如何按 DESC
顺序ORDER BY
使用此列数据?
我希望查询能够理解 am
和 pm
并据此进行排序。
最佳答案
一种方法是转换为时间:
order by str_to_date(concat('2000-01-01 ', substring_index(str, ' - ', 1)), '%Y-%m-%d %h:%i %p'),
str_to_date(concat('2000-01-01 ', substring_index(str, ' - ', -1)), '%Y-%m-%d %h:%i %p')
日期与order by
无关,因为它们都是相同的。
Here是一个 db<>fiddle 显示生成的值。
关于mysql - 如何将Order BY设置为特定的变量结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56296374/
我是一名优秀的程序员,十分优秀!