小编典典

使用Python插入MySQL数据库后,如何获得“ id”?

mysql

我执行INSERT INTO语句

cursor.execute("INSERT INTO mytable(height) VALUES(%s)",(height))

我想获取主键。

我的表有2列:

id      primary, auto increment
height  this is the other column.

我刚刚插入了这个,如何获得“ id”?


阅读 345

收藏
2020-05-17

共1个答案

小编典典

使用cursor.lastrowid得到插入光标对象的最后一行ID,或者connection.insert_id()从该连接上最后插入获取的ID。

2020-05-17