获取以前生成的ID

2024-06-07 17:28:04 发布

您现在位置:Python中文网/ 问答频道 /正文

我正试图在MySQL表中插入新行。当我随机生成ID时,这段代码正常工作,但是当我更改了表属性以便ID现在是自动递增字段时,代码不再工作,因为函数不再知道ID

代码段:

def register():
#Insert Into Usertable
userInsertSQL="""INSERT INTO users (username,password,stakeholder) VALUES (%s,%s,%s)"""
mycursor.execute(userInsertSQL,(inputedUsername.get(),inputedPassword.get(),inputedStakeholder.get()))
mydb.commit()
# Determine which table to place new user into
if inputedStakeholder.get() == "Employee":
    employeeInsertSQL="""INSERT INTO employee (firstname,secondname,gender,userID) VALUES(%s,%s,%s,%s)"""
    mycursor.execute(employeeInsertSQL,(inputedFirstName.get(),inputedSecondName.get(),inputedGender.get(),userID))

是否有一种方法可以获得在第一个Insert语句中生成的userID,而不选择users表中的最后一列


Tags: 代码idexecutegetusersinsertvaluesuserid
1条回答
网友
1楼 · 发布于 2024-06-07 17:28:04

您可以尝试使用MySQL提供的LAST_INSERT_ID()函数:

if inputedStakeholder.get() == "Employee":
    employeeInsertSQL = """INSERT INTO employee (firstname,secondname,gender,userID)
                           SELECT %s, %s, %s, LAST_INSERT_ID()"""
    mycursor.execute(inputedFirstName.get(), inputedSecondName.get(),
        inputedGender.get())

从MySQL documentation中,您会发现LAST_INSERT_ID()返回表中最后生成的自动增量值。只要您的Python脚本只使用一个连接,并且没有其他线程共享该连接,上述方法就应该有效

相关问题 更多 >

    热门问题