使用 PHP 导出/导入 mySQL 查询

发布于 2024-11-02 15:40:04 字数 191 浏览 0 评论 0原文

我正在寻找在 WordPress 插件中实现导出/导入功能。我能想到的唯一场景是在将数据库查询为某种格式后导出数据,然后重新读取它(用于导入)并使用该数据创建查询。

我在想是否有捷径。我想要的基本上是一个函数来获取数据库中数据的 SQL 查询,然后在导入时执行它。这与 PHPmyAdmin 中导出数据库的功能基本相同。

有人有主意吗?

I'm looking to implement an Export/Import feature in a WordPress Plug-in. The only scenario that I can think of, is exporting the data after querying the database to some format and then re-reading it (for import) and creating a query with that data.

I'm thinking if there is a shortcut for that. What I want basically is a function to get the SQL query of the data I have in the database and then execute it when importing. This is basically the same function in PHPmyAdmin that exports the database.

Anyone have an idea?

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

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

发布评论

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

评论(1

逆光下的微笑 2024-11-09 15:40:04

查看 MySQL 的 SELECT 语法,特别是 ... INTO OUTFILE 部分。将其与 MySQL 的 LOAD DATA INFILE 语法结合起来 你可能正在做生意。

Check out MySQL's SELECT Syntax, specifically the ... INTO OUTFILE portion. Couple that with MySQL's LOAD DATA INFILE Syntax and you might be in business.

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