Wykonuję instrukcję INSERT INTO
cursor.execute("INSERT INTO mytable(height) VALUES(%s)",(height))
i chcę zdobyć klucz podstawowy.
Moja tabela ma 2 kolumny:
id primary, auto increment
height this is the other column.
Jak uzyskać „identyfikator” po tym, jak właśnie go wstawiłem?
1 odpowiedź
Użyj cursor.lastrowid
, aby uzyskać identyfikator ostatniego wiersza wstawiony do obiektu kursora, lub connection.insert_id ()
, aby uzyskać identyfikator z ostatniej wstawki tego połączenia.