que ejecutar una instrucción INSERT INTO¿Cómo obtengo el "id" después de INSERTAR en la base de datos MySQL con Python?
cursor.execute("INSERT INTO mytable(height) VALUES(%s)",(height))
y quiero obtener la clave primaria.
Mi tabla tiene 2 columnas:
id primary, auto increment
height this is the other column.
¿Cómo consigo el "id", después de que acaba de insertar esto?
http://stackoverflow.com/questions/706755/how-do-you-safely-and-efficiently-get-the-row-id-after-an-insert-with-mysql-usin – pmav99