Is there a way I can print the query the Django ORM is generating?
Say I execute the following statement: Model.objects.filter(name='test')
How do I get to see the generated SQL query?
Thanks in advance!
|
Is there a way I can print the query the Django ORM is generating? Say I execute the following statement: Model.objects.filter(name='test') How do I get to see the generated SQL query? Thanks in advance! |
|||
|
|
|
Each QuerySet object has a 'query' field that you can log or print to stdout for debugging purposes.
Edit I've also used custom template tags (as outlined in this snippet) to inject the queries in the scope of a single request as HTML comments. |
|||||||||||
|
|
As long as
For an individual query, you can do:
|
|||||||||
|
|
You also can use python logging to log all queries generated by Django. Just add this to your settings file.
|
|||||
|
|
Maybe you should take a look at |
|||
|
|
|
You can paste this code on your interpreter which will display all the SQL queries:
|
|||
|
|