phpmyadmin,自动导入,sql 和出口
我使用 phpmyadmin 导入使用 mysqldump 创建的文件。然后我对数据运行几行 sql,其中包括创建视图的行。然后我将视图导出
为csv
。
我可以以任何方式自动化它吗?通过查看 phpmyadmin 或进行网络搜索,我看不到任何方法可以做到这一点。
如果做不到这一点,phpmyadmin至少有办法保存sql查询吗?
I use phpmyadmin to import
a file that was created with mysqldump
. Then I run a few lines of sql on the data, including a line which creates a view. Then I export
the view as a csv
.
Can I automate that in any way? I don't see any way to do it, from looking within phpmyadmin or doing a websearch.
Failing that, does phpmyadmin at least have any way to save sql queries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
phpMyAdmin 并不是真正适合自动化的工具。您最好使用 cron 和 mysql 命令行工具来做到这一点。
phpMyAdmin is not really the right tool for automation. You better do that using cron and mysql command line tool.