postgreSQL 到 MySQL 转换器

发布于 2024-10-19 12:56:31 字数 136 浏览 1 评论 0原文

我在 postgreSQL 数据库中有一个表,我想将其转换为 MySQL 表。做到这一点最简单的方法是什么?有什么工具可以做到这一点吗?请记住,我不会将整个数据库转换为 MySQL...我只是从 postgreSQL 中获取一个表并将其转换为 MySQL 表

I have a table in a postgreSQL database that I would like to convert into a MySQL table. What would be the easiest way to do this? Any tools to do this? Remember, I am not converting the whole database to MySQL... I am just taking a table from that postgreSQL and convert it to MySQL table

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不美如何 2024-10-26 12:56:31

您可以使用 pg_dump 从单个表创建 SQL 转储并使用此转储作为 mysql 的输入。当您的 MySQL 数据库中已有表结构和 --column-inserts 来创建直接的 INSERT 语句时,请查看选项 --data-only

You can use pg_dump to create a SQL dump from a single table and use this dump as input for mysql. Take a look at the option --data-only when you already have the tablestructure in your MySQL database and --column-inserts to create straight forward INSERT statements.

司马昭之心 2024-10-26 12:56:31

像 SSIS、Pentaho、Talend 或其他几个这样的 ETL 工具就可以解决这个问题。大多数支持多种数据源和目标。

An ETL tool like SSIS, Pentaho, Talend or several others will do the trick. Most support a wide variety of data sources and destinations.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文