首页 > 代码库 > python标记

python标记

python插入数据库内容后获取这条内容的主键(id)的值

cursor.execute("INSERT INTO test (nama) VALUES (%s)", name)  #执行插入语句

 print int(cursor.lastrowid)#直接查询到主键id

print int(conn.insert_id()) #最新插入行的主键ID,

python标记