Mysql – Database Transfer from PostgreSQL to MySQL

database-designMySQLpostgresql

Is there any method to tranfer the data and schema from a postgresql database to mysql?

Best Answer

Pg_dump will create a plaintext SQL script with the statements needed to re-create the schema and the data. You can then import this script into mysql. You may need to tweak the script in certain places due to postgres/mysql differences.