Difference between JSON and SQL

后端 未结 4 592
小鲜肉
小鲜肉 2021-01-04 13:55

I\'m a newbie at web development, so here\'s a simple question. I\'ve been doing a few tutorials in Django, setting up an SQL database, which is all good. I have now come ac

4条回答
  •  粉色の甜心
    2021-01-04 14:18

    JSON isn't a database, but there isn't anything stopping you from using JSON in a database. Mongo DB is a database that uses JSON (it's actually BSON behind closed doors) to communicate with the database. If you enjoy using JSON and you understand it, I recommend looking into Mongo!

提交回复
热议问题