如何上传新的 Mysql 数据库表?

发布于 2024-08-23 21:19:58 字数 338 浏览 1 评论 0原文

我被分配了一个下载的 xyz.sql 文件(它重新创建 驻留在另一台服务器上的表和数据。

我在 Mac 10.6.2 上运行 MAMP 1.8.4。

我终于在命令行中使用以下命令得到了 mysql 提示符: /Applications/MAMP/Library/bin/mysql mysql –uroot –proot

现在,什么命令可以将该文件作为输入,给我的 Mysql 服务器要使用的新数据库名称(xyz),并上传 整个事情?

我的意思是 - 我的 phpMyadmin 还有其他数据库 看到了。我希望它现在可以看到这个新的 xyz 数据库下一个 当我打开 phpMyadmin 时。

I've been assigned a downloaded xyz.sql file (which recreates
tables and data that resided on another server.

I have running MAMP 1.8.4 on my Mac 10.6.2.

I finally got my mysql prompt at the command line using:
/Applications/MAMP/Library/bin/mysql mysql –uroot –proot

Now, what command can take that file for input, give my Mysql
server a new database name to use (xyz), and upload the
whole thing?

What I mean is - I have other databases that my phpMyadmin
sees. I want it to now see this new xyz database the next
time I open phpMyadmin.

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

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

发布评论

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

评论(2

最美的太阳 2024-08-30 21:19:58

要执行该文件,请在 mysql 提示符处: source

如果需要先切换到数据库 xyz,命令为:use xyz

To execute the file, at the mysql prompt: source <filename>

If you need to switch to database xyz first, the command is: use xyz

行雁书 2024-08-30 21:19:58

更改为存储 sql 文件的目录,然后您需要执行类似的操作

mysql –uroot –proot < xyz.sql

change into the directory where the sql file is stored, then you'll need to execute something like

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