Answers for "what is the difference between sql and nosql databases and for which type of query both are optimized?"

SQL
19

difference between nosql and sql

SQL						|    NoSQL
  relational			| non-relational
  						|
use structured query	| NoSQL databases have 
language and have a		| dynamic schemas for 
predefined schema.		| unstructured data.
						|
are vertically scalable | are horizontally scalable.
are table based			| are document, key-value,
						| graph or wide-column stores.
                        |
are better for multi-row| are better for unstructured 
transactions			| data like documents or JSON.
Posted by: Guest on November-04-2020

Code answers related to "what is the difference between sql and nosql databases and for which type of query both are optimized?"

Code answers related to "SQL"

Browse Popular Code Answers by Language