PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Python/postgres/psycopg2:ottenere l'ID della riga appena inserita

cursor.execute("INSERT INTO .... RETURNING id")
id_of_new_row = cursor.fetchone()[0]

E per favore non creare stringhe SQL contenenti valori manualmente. Puoi (e dovresti!) passare i valori separatamente, rendendo superfluo l'escape e l'iniezione SQL impossibile:

sql_string = "INSERT INTO domes_hundred (name,name_slug,status) VALUES (%s,%s,%s) RETURNING id;"
cursor.execute(sql_string, (hundred_name, hundred_slug, status))
hundred = cursor.fetchone()[0]

Consulta i documenti di psycopg per maggiori dettagli:http://initd.org/psycopg/docs/usage.html#passing-parameters-to-sql-queries