如何在 DOS 提示符下使用 Sql
您好,我已经从 oracle 网站安装了 MySQL,但在程序菜单中的 MySQL 下没有找到“MySQL 命令行”选项。
所以我在这个网站上查找了如何从 DOS 命令提示符执行 sql 查询。
我在此网站上找到了一个答案,建议输入以下内容:sql root u- p-
等,但这不起作用。
谁能告诉我从 DOS 进入 sql 的语法,或者指导我找到上面描述的答案(我找不到它)
我使用 Windows 7 并下载了 ODBC 驱动程序。
非常感谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
除非 MySQL 的 bin 目录位于您的 PATH 变量中,否则您需要位于该目录中,或者写入其绝对路径才能执行。
尝试这样的操作(取决于您的安装):
或者,您可以直接输入:
Unless MySQL's bin directory is in your
PATH
variable, you will need to either be in the directory, or write an absolute path to it to execute.Try something like this (depending on your installation):
Alternatively, you could type this directly:
在这行代码之后你有这个
欢迎信息告诉你 mysql 的服务器版本和你的连接 ID
after this line of codes you have this
welcome note telling you the server version of mysql and your connection id
如果您导航到刚刚安装的程序的 bin 目录,然后输入“mysql.exe”,
请查看 此指南
If you navigate to the bin directory of the program you just installed then type "mysql.exe"
Have a look at this guide if you get stuck with the commands
确定MySQL安装路径,并将其添加到
PATH
环境变量中。上面的示例假设 MySQL 安装在 C:\MySQL 目录中。
设置好路径后,就可以直接执行
以root用户登录MySQL了。如果需要密码,可以使用
-p
标志。每次都需要执行
SET PATH
,因此您可以制作一个批处理文件。Determine the path of your MySQL installation, and add it to
PATH
environment variable.The above example assumes MySQL to be installed in C:\MySQL directory.
Once path is set, then you can directly execute
Which logs into MySQL as root user. The
-p
flag can be used if password is requiredIt is required to execute
SET PATH
every time, hence you may make a batch file.