+ 1
What's better SQL or NoSQL in Django Projects?
4 odpowiedzi
+ 2
It depends on what kind of data you need to store. Is it structured or unstructered data you are working with!
+ 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.
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.
0
It depends on data, if you are new go with SQL DBS