Google News
logo
Neo4J - Interview Questions
Mention what is the difference between Neo4j graph database and MySQL?
Neo4j :
* It consists of vertices and edges. Each vertex or node represent a key value or attribute
* It is possible to store dynamic content like images, videos, audio,
* It has the capability for deep search into the database without affecting the performance along with efficient timing
* We can relate any two objects in neo4j by the mean of making relationship between any two nodes
 
MySQL :
* In relational databases, attributes are appended in plain table format
* In relational databases, such as MySQL, it’s difficult to store videos, audios, images,
* It takes longer time for database search and also inconvenient compared to neo4j
* It lacks relationship and difficult to use them for connected graphs and data
Advertisement