如何将mySQL时间转换为python时间?

时间:2017-06-28 19:02:20

标签: python mysql

我试图使用python从mySQL数据库中检索时间变量。下面显示了我用来从mySQL数据库中检索时间变量的python代码。

import mysql.connector
import time
import datetime

con = mysql.connector.connect(user='root',password='root',host='localhost',database='RV_Aquarium')

cur = con.cursor()

cur.execute("select Feed_Time from ActuatorsLog  ")

results = cur.fetchall()
delta = results[0]
print delta

cur.close()

我能够检索数据,但格式如下所示 enter image description here

我想以格式转换检索数据,例如19:00:00。有人可以帮我了解如何在python中将(datetime.timedelta(0, 68400),)格式转换为19:00:00格式吗?

下面显示了我的数据库数据

enter image description here

0 个答案:

没有答案