Should we have a database independent SQL like query language in Django?
- by Yugal Jindle
Note :
I know we have Django ORM already that keeps things database independent and converts to the database specific SQL queries.
Once things starts getting complicated it is preferred to write raw SQL queries for better efficiency.
When you write raw sql queries your code gets trapped with the database you are using.
I also understand its…