【问题标题】:Mysql timestamp Data truncated for columnMysql 时间戳 列截断数据
【发布时间】:2013-10-14 10:48:55
【问题描述】:

我正在尝试使用 python 将时间戳插入 mysql 数据库的 created_by 列。

这是我的数据库表设置..

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

【问题讨论】:

    标签: python mysql timestamp truncated


    【解决方案1】:

    您应该设置日期时间。您的 created_at 列将在插入时自动更新为当前时间戳。请参阅Automatic Initialization and Updating for TIMESTAMP 上的文档。

    你的陈述应该是

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

    【讨论】:

    • 完美!这解决了问题。
    猜你喜欢
    • 2011-07-03
    • 2021-07-11
    • 2018-07-01
    • 2014-03-25
    • 2021-06-11
    • 2014-08-26
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多