Want to know ORM in detail

what actually ORM does and i want to know a short intro about it please.

Hello @saichandugudala, ORM basically stands for the object-relational mapper. ORM is generally for relational databases and in relational databases, we use SQL for the commands to deal with the data or for the queries and in Django ORM helps us to write modified queries or the queries that are in general easy to understand and within the system, those queries are parsed as normal raw SQL queries and then we can manipulate with the data. So Django ORM is a technique or you can refer it as a procedure where we can directly deal with the database without writing the raw SQL queries. You just write the queries using Django ORM and it implicitly converts into the raw SQL.
I hope it is clear to you, pls feel free to ask if there is any confusion.
Thanks :slight_smile:

Thanks for the clear explanation.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.