只選擇最後1分鐘記錄我有一個MySQL數據庫表像,如何在MySQL數據庫與Python
received_time - message
--------------------------------
08:20:30 - I'm happy with your service
08:20:33 - I'm your customer
08:21:40 - We hate about your customer service
我要選擇最後一分鐘內接收到的消息。我用下面的查詢。
cursor = conn.cursor()
cursor.execute("SELECT Message FROM all_message WHERE received_time >= NOW() -INTERVAL 1 MINUTE")
results = [res[0] for res in cursor.fetchall()]
print results
但它返回空值。任何人都可以幫助我解決這個問題。
'received_time'數據類型是'DATETIME'或'TIME'? – Arulkumar
它是TIME數據類型。 –
可以正常使用查詢部分,請查看[demo](http://rextester.com/OFRUM10029) – Arulkumar