mysql 将数据从一个模式插入到另一个模式
有没有办法将mysql中schema1的表中的数据插入到schema2的表中。
另外,我认为会存在任何访问/权限问题。
我的环境是 Joomla,使用 Fabrik 扩展、PHP、MySQL
请分享一些技巧
提前致谢
Is there a way to insert data from a table in schema1 to a table in schema2 in mysql.
Also , I assume there will be any access/privilege issues.
My environment is Joomla using Fabrik extension, PHP, MySQL
Kindly share some tips
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此查询的作用是:
如果您以 root 用户身份执行此操作,则不会出现权限问题。
This query does that:
If you do this as root user, you will have no permission issues.
您始终可以在表名称前面加上数据库名称,只要用户具有适当的权限,您就可以执行以下操作:
请参阅以下文档 插入..选择
You can always preface the table name with the database name and as long as the user has the appropriate permission you can do:
See the following for the documentation insert .. select