Python-postgresql时间戳和没有时区的时间
我有 2 个字符串表示:
- 日期 - dd/mm/yyyy hh:mm 我需要将其转换为 没有时区的时间戳
- start_time /end_tiime- hh:mm:ss 我需要将其转换为没有时区的时间
我需要这样做才能将它们添加到一个sql查询。看起来像这样:
sql = '''
INSERT INTO myTable (date, start_time, end_time)
VALUES (%s ,%s, %s, %s);'''
params = [timestamp, start_time, end_time]
self.cursor.execute(sql, params)
I have 2 strings which represent:
- date- dd/mm/yyyy hh:mm and I need to convert it to timestamp without time zone
- start_time/end_tiime- hh:mm:ss and I need to convert it time without time zone
I need to do this in order to add them to a sql query. which looks like this:
sql = '''
INSERT INTO myTable (date, start_time, end_time)
VALUES (%s ,%s, %s, %s);'''
params = [timestamp, start_time, end_time]
self.cursor.execute(sql, params)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
dd/mm/yyyy hh:mm 到无时区的时间戳:
hh:mm:ss 转为不带时区的时间:
你能澄清一下
时间
是什么样的对象吗?dd/mm/yyyy hh:mm to timestamp without time zone:
hh:mm:ss to time without time zone:
Can you clarify what kind of object is a
time
?