+ 2
Difference between MySQL and Postgresql
What is the difference between MySQL and Postgresql?
3 Answers
+ 9
â˘Â PostgreSQL is an Object Relational Database Management System (ORDBMS) whereas MySQL is a community driven DBMS system.
â˘Â PostgreSQL support modern applications feature like JSON, XML etc. while MySQL only supports JSON.
â˘Â PostgreSQL performs well when executing complex queries whereas MySQL performs well in OLAP & OLTP systems.
â˘Â PostgreSQL is complete ACID compliant while MySQL is only ACID compliant when used with InnoDB and NDB.
⢠PostgreSQL supports Materialized Views whereas MySQL doesnât supports Materialized Views.
Source: https://www.guru99.com/postgresql-vs-mysql-difference.html
+ 6
I dislike the quality of this guru99 article. It is very superficial and sometimes even wrong. For example, last MySql also has support for XML. A much better article is this:
https://www.postgresqltutorial.com/postgresql-vs-mysql/
From Bird's eye view, both are free and open source RDBMS systems, there is very minor difference in the SQL dialect, and they have very similar range of features. Mysql does not have full outer join and does not have materialized views, this much is true. Pgsql has additional data types such as array. So the majority of differences are in the advanced features and technological details, that are mostly irrelevant for the average developer.
+ 1
Thank you Fox and Tibor Santa for your answers