Skip to content

Instantly share code, notes, and snippets.

@maxivak
Created October 20, 2012 21:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxivak/3924899 to your computer and use it in GitHub Desktop.
Save maxivak/3924899 to your computer and use it in GitHub Desktop.
Django: raw SQL - UPDATE
from django.db import connection, transaction
cursor = connection.cursor()
cursor.execute("UPDATE yourtablename SET field1=value1, .. WHERE .. ")
transaction.set_dirty()
transaction.commit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment