PostgreSQL数据导出成Insert语句

前端之家收集整理的这篇文章主要介绍了PostgreSQL数据导出成Insert语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
pg_dump --dbname=my_db_name --host=my_host_ip_addr --username=my_username --no-password --data-only --exclude-table-data=my_history_tables
 --inserts --column-inserts --disable-dollar-quoting --file=data_only_insert_sql.backup

猜你在找的Postgre SQL相关文章