PostgreSQL端导出建表DDL,更改为MySQL可支持
[postgres]# pg_dump -d postgres -U postgres --schema-only >> mysql_table.ddl
PostgreSQL端导出INSERT,注释掉无用的信息
[postgres]# pg_dump -d postgres -U postgres -t TABNAME -a --inserts > tabname.sql
[postgres]# set -i “s/SET/-- SET/g” tabname.sql
MySQL端导入
[mysql]# mysql controller < tabname.ddl
[mysql]# mysql controller < tabname.sql