eli5 What is a non relational database ?

306 views

eli5 What is a non relational database ?

In: 11

7 Answers

Anonymous 0 Comments

A relational database is a database that relies on (related) tables for data storage. Typically they’ll use some flavor of SQL (structured query language) for access.

Any database that doesn’t rely on a tabular structure is not relational (or, more commonly, NoSQL). There are [several different types](https://en.wikipedia.org/wiki/NoSQL#Types_and_examples) of NoSQL database, and which one is best depends on context.

You are viewing 1 out of 7 answers, click here to view all answers.