gpt4 book ai didi

mysql:从表中选择 * 时更改日期时间格式

转载 作者:行者123 更新时间:2023-11-30 22:35:45 24 4
gpt4 key购买 nike

我需要查询和获取表中的一行并将默认日期时间格式 2015-09-15 00:00:00 更改为简单的 Sep 02 2015。知道如何实现这一点吗?

我试过了

SELECT 
*
from tablename
where id=0;

SELECT
DATE_FORMAT(date, '%b %d %Y')
FROM tablename.

它返回两个表。

最佳答案

这应该有效:

select sub.comments_id, sub.comment, date_format(sub.date, '%b %d %Y'), sub.views 
from (select comments_id, comment, date, views from tablename where id=0) as sub;

MySQL 的强大之处在于子选择,充分利用它。

关于mysql:从表中选择 * 时更改日期时间格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32592509/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com