What's better SQL or NoSQL in Django Projects? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What's better SQL or NoSQL in Django Projects?

1st Aug 2023, 9:50 AM
ALhassan Mabrouk
ALhassan Mabrouk - avatar
4 Answers
+ 2
It depends on what kind of data you need to store. Is it structured or unstructered data you are working with!
1st Aug 2023, 9:55 AM
Jan
Jan - avatar
+ 1
Choose SQL databases (e.g., PostgreSQL, MySQL) for well-defined relationships and complex data models. Opt for NoSQL databases (e.g., MongoDB) for flexible schema and high scalability. Consider your project's data structure and growth to make the best choice in a Django project.
1st Aug 2023, 4:15 PM
‎ ຸ
0
These are 2 different types of db. You can read about relational(SQL) and non-relational(NoSQL). You can use both of them in your project, depends on your goal. There are some other types of db like Hierarchical, Object-oriented etc.
1st Aug 2023, 3:53 PM
Yamasheva Yamashev
Yamasheva Yamashev - avatar
0
It depends on data, if you are new go with SQL DBS
3rd Aug 2023, 2:29 AM
Sam Attal
Sam Attal - avatar