You are on page 1of 10

Fundamentals Review

What on earth is a relational database?


Fundamentals Review
Fundamentals Review
Key terms and Concepts

NO SQL
A NoSQL (originally referring to "non SQL", "non-relational" or
"not only SQL") database provides a mechanism for storage
and retrieval of data that is modeled in means other than the
tabular relations used in relational databases.

SQL Vs NO SQL
Key terms and Concepts. Continue

https://www.youtube.com/watch?v=BgQFJ_UNIgw
Key terms and Concepts. Continue

DBMS Brands
Key terms and Concepts. Continue
Apps

Structur No SQL Vs SQL Applications and structure


Key terms and Concepts. Continue

SQL Vs NO SQL Querying Structure


Key terms and Concepts. Continue
Key terms and Concepts. Continue
Key-value store
Also known as key-value database, is a data storage paradigm
designed for storing, retrieving, and managing associative
arrays, a data structure more commonly known today as a
dictionary or hash. In a key-value store you know the key (like
a user id) and retrieve all the information for that key (the value).
The information is not structured – it can be anything!

The trade-off with key-value stores is that a value is only


associated with a single key. You can’t associate a single value
with multiple keys as you can in a traditional relational database.

You might also like