Mysql请求 - 特定时间跨度(unix时间戳)

时间:2015-12-12 05:58:32

标签: php mysql

以下是选择11月25日所有订单的代码:

def printboard():    #Prints the gameboard with the cell variables in the spaces
    table = \
    '''
    {} | {} | {}
    ----------
    {} | {} | {}
    ----------
    {} | {} |
    '''
    print(table.format(c[1],c[2],c[3],c[4],c[5],c[6],c[7],c[8]))
    return

尽管代码运行良好并且做了应有的事情 - 是否有更好的解决方案?我觉得应该是更优雅的方式。 谢谢

2 个答案:

答案 0 :(得分:0)

在我的观点中,这是更好的解决方案,我在这些类型的问题中也是如此,因为strtotime()将日期和时间转换为精确值,这很容易比较..

答案 1 :(得分:0)

您可以更轻松地使用这些方式: -

SELECT * FROM `table` WHERE DATE(`timestamp`) = CURDATE()

它可能对你有帮助。