gpt4 book ai didi

php - SQL - 选择 unixtimestamp 作为日期

转载 作者:行者123 更新时间:2023-11-29 21:58:24 27 4
gpt4 key购买 nike

我正在尝试从数据库中选择一个 unixtimestamp 列作为可读日期时间:

SELECT count(*) FROM users WHERE user_by="Admin" AND expire(FROM_UNIXTIME(unixtime),'%Y-%m-%d')='2015-10-02'

上面给了我这个错误:

#1305 - FUNCTION database_maindb.expire does not exist

如何从 expire 列中选择 unixtimestamp 作为日期时间,格式为:年-月-日期

最佳答案

假设您的数据库字段名为“expire”:

SELECT count(*) FROM users WHERE user_by="Admin" AND FROM_UNIXTIME(expire,'%Y-%m-%d')='2015-10-02'

参见http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_from-unixtime了解详情

关于php - SQL - 选择 unixtimestamp 作为日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32902655/

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