MySQL:是否可以在结果表中格式化 UNIXTIME?
每个人。我是 SQL 新手,我在 Drupal 安装中使用它。我想知道是否可以将我得到的结果(在 UNIXTIME 中)格式化为 DATE TIME 格式(人类可读的、DD-MM-YY 或稍有改动的 ISO 时间,因为我不在美国)在查询本身内。
到目前为止,这是我非常简单的查询:
SELECT name, mail, login, status AS activo
FROM users
WHERE status = '1'
AND login > '0'
有没有办法将我的“登录”列从 UNIXTIME 格式化为 ISO 时间?
非常感谢!
everyone. I am brand new to SQL and I am using it within a Drupal instalation. I would like to know if it is possible to format the results I get (in UNIXTIME) into a DATE TIME format (human-readable, DD-MM-YY, or ISO time with a little twist, since I am not in USA) within the query itself.
So far, this is my very simple query:
SELECT name, mail, login, status AS activo
FROM users
WHERE status = '1'
AND login > '0'
Is there a way to format my "login" column from UNIXTIME to ISO time?
Thanx a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,对我有用的是:
但感谢你为我指明了正确的方向,马克。
Actually, what worked for me was:
but thanks for pointing me in the right direction, Mark.
事实上 - 请参阅 MySQL 日期和时间功能:日期格式。
例如。
Indeed - see MySQL Date and time functions: date_format.
eg.