Using raw SQL in django
in Python added by admin, on 3/1/2008 django framework intermediate sql
For a django project I'm working on, I need to run a simple query with COUNT and GROUP BY statements to collect some summary data. I tried working with the model API, and eventually fell back to using raw SQL instead.
comment save report