作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我正在处理的工作流程...
Get data between time and time -> sort by newest -> filter out the duplicates phonenumbers -> search for three different variables string -> print result using php.
首先我使用了这个,但是它没有按最新记录排序:
SELECT id, phone, text
FROM phones
WHERE timestamp BETWEEN '2016-10-01 00:00:00' AND '2016-10-06 23:59:00'
GROUP BY user
ORDER BY timestamp DESC
经过搜索和测试后,我让它可以与子查询一起使用:
SELECT id, phone, text
FROM phones WHERE timestamp IN(SELECT
max(timestamp)
FROM phones
GROUP BY phone )
ORDER BY timestamp DESC
但是现在我不确定该函数应该放在哪里:
BETWEEN '2016-10-01 00:00:00' AND '2016-10-06 23:59:00'
我在子查询和主查询之外尝试过。可以这样做吗?
最佳答案
尝试使用 str_to_date
SELECT id, phone, text
FROM phones
WHERE date(timestamp) BETWEEN str_to_date( '2016-10-01' ,'%Y-%m-%d')
AND str_to_date( '2016-10-06' '%Y-%m-%d')
ORDER BY timestamp DESC
关于php - 在子查询后使用 BETWEEN 'date' AND 'date',无法使其正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39880496/
我是一名优秀的程序员,十分优秀!