Hacker News new | ask | show | jobs
by zach_garwood 1257 days ago
Django ORM is good for ~90% of queries, but there's always that pesky query that would be too convoluted to build up with the ORM, so it's nice to be able to jump down to the DB API and `execute()` a custom query.