mysql 时间戳截断_列的Mysql时间戳数据被截断

我试图使用python在mysql数据库创建的列中插入时间戳。

这是我的数据库表设置。。CREATE TABLE temps (

temp1 FLOAT, temp2 FLOAT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP

);

temp1和temp2并正确填充,但收到时间戳错误Warning: Data truncated for column 'created_at' at row 1

cursor.execute("""INSERT INTO temps VALUES (%s,%s,%s)""",(avgtemperatures[0],avgtemperatures[1],st[2]))

((71.7116, 73.2494, None),)

下面是python脚本的一节,它将信息插入到数据库中。#connect to db

db = MySQLdb.connect("localhost","user","password","temps" )

#setup cursor

cursor = db.cursor()

ts = time.time()

st = datetime.datetime.fromtimestamp(ts).strftime('%Y-%m-%d %H:%M:%S')

sql = """CREATE TABLE IF NOT EXISTS temps (

temp1 FLOAT,

temp2 FLOAT,

created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP)"""

cursor.execute(sql)

#insert to table

try:

cursor.execute("""INSERT INTO temps VALUES (%s,%s,%s)""",(avgtemperatures[0],avgtemperatures[1],st[2]))

db.commit()

except:

db.rollback()

#show table

cursor.execute("""SELECT * FROM temps;""")

print cursor.fetchall()

((188L, 90L),)

db.close()

这里是数据库的转储:Dumping data for table temps

temp1 temp2 created_at

71.7116 73.2494 0000-00-00 00:00:00

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值