MySQL 查询中的 DATE_FORMAT()
我正在尝试更改此时间戳
2010-08-02 00:28:20
至 月/日/年 -
10年8月2日
..在查询中(我知道在查询中执行速度更快)。
$sql = "SELECT * FROM posts ORDER BY post_date DESC";
我尝试在查询中使用 DATE_FORMAT() 多种方式,但我似乎无法正确使用。有人可以分享如何做到这一点吗?
I'm trying to change this timestamp
2010-08-02 00:28:20
to month/day/year -
08/02/10
..in the query (I know that doing it in the query is faster).
$sql = "SELECT * FROM posts ORDER BY post_date DESC";
I tried using the DATE_FORMAT() in the query many ways but I can't seem to get it right.. Can someone please share how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用有关 DATE_FORMAT() 的手册:
Using the manual on DATE_FORMAT():