Postgresql vs MySQL - which is better for query joining and writing data (inserts)

I need to create a database that will contain 50M records in one table (there will be other tables with fewer records). I am more worried about attaching queries and writing data (inserts) to the database. There will be fewer updates and requests will be deleted.

I read this article about comparing Postgresql versus MySQL.

I also went through the links.

Postgres 9.1 vs Mysql 5.6 InnoDB?

https://stackoverflow.com/questions/110927/would-you-recommend-postgresql-over-mysql

How different is PostgreSQL from MySQL?

MySQL vs PostgreSQL Wiki

MySQL vs PostgreSQL: why MySQL is superior to PostgreSQL

My problem is some stackoverflow links. Some people say that Mysql is better and vice versa.

Since I'm more interested in joining and writing data to a database, which is better for me? Postgresql vs MySQL? What approaches should be used to create such a database?

Given that, please do not consider this as another Postgresql vs MySQL question. I did my research, and I'm only interested in joining queries and writing data to a database script. I also found out that PostgreSQL is better suited for GIS data ..

+7
performance sql database mysql postgresql
source share

No one has answered this question yet.

See similar questions:

69
Postgres 9.1 vs Mysql 5.6 InnoDB?
48
How different is PostgreSQL from MySQL?

or similar:

2847
Improve SQLite performance per second per second?
2568
Should I use datetime or timestamp data type in MySQL?
1587
Insert multiple rows into a single SQL query?
1256
What are the options for storing hierarchical data in a relational database?
1112
What type of MySQL data is used to store boolean values
922
What version of PostgreSQL am I running?
770
How to "paste if does not exist" in MySQL?
721
Joining a Subquery
586
Insert, duplicate update in PostgreSQL?
349
How an SQL query can return data from multiple tables

All Articles