Import MySQL dump to PostgreSQL database

后端 未结 17 844
北海茫月
北海茫月 2020-12-04 10:05

How can I import an \"xxxx.sql\" dump from MySQL to a PostgreSQL database?

17条回答
  •  北海茫月
    2020-12-04 10:31

    Mac OS X

    brew update && brew install pgloader
    
    pgloader mysql://user@host/db_name postgresql://user@host/db_name
    

提交回复
热议问题