使用Python INSERT 到MySQL 資料庫後檢索最後插入的ID
使用Python 執行INSERT 到MySQL 資料庫時,取得主鍵插入新行時,取得主鍵插入行的資訊對於進一步處理或引用數據至關重要。本文提供如何在 Python 中檢索最後插入的 ID 的詳細說明和程式碼範例。
使用cursor.lastrowid
cursor.lastrowid 屬性提供 ID目前遊標的最後插入行的位置。要使用此方法,您需要:
import mysql.connector # Establish the MySQL connection connection = mysql.connector.connect(...) # Create a cursor object cursor = connection.cursor() # Execute the INSERT statement cursor.execute("INSERT INTO mytable(height) VALUES(%s)", (height)) # Get the last inserted ID last_inserted_id = cursor.lastrowid
使用connection.insert_id()
檢索最後插入的ID的另一種方法是透過connection.insert_id () 方法,傳回為指定連線產生的最後一個ID。當您需要從執行 INSERT 語句的遊標上下文之外檢索 ID 時,此方法非常有用。
# Execute the INSERT statement connection.cursor().execute("INSERT INTO mytable(height) VALUES(%s)", (height)) # Get the last inserted ID from the connection last_inserted_id = connection.insert_id()
透過遵循這些方法,您可以輕鬆檢索最後插入的「id」值使用 Python 對 MySQL 資料庫執行 INSERT 操作。
以上是如何使用 Python 檢索 MySQL 中最後插入的 ID?的詳細內容。更多資訊請關注PHP中文網其他相關文章!