dos进入mysql的实现方法

前端之家收集整理的这篇文章主要介绍了dos进入mysql的实现方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
C:\Users\zsh>MysqL -h 127.0.0.1 -u root -p
Enter password: ****
Welcome to the MysqL monitor. Commands end with ; or \g.
Your MysqL connection id is 11 to server version: 5.0.27-community-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

MysqL> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| MysqL |
| test |
+--------------------+
3 rows in set (0.00 sec)

MysqL>

这样是不行的:

C:\Users\zsh>test -h 127.0.0.1 -u root -p;

'test' 不是内部或外部命令,也不是可运行的程序或批处理文件

C:\Users\zsh>test -h 127.0.0.1 -u root -p

'test' 不是内部或外部命令,也不是可运行的程序或批处理文件

由此可见:

C:\Users\zsh>MysqL -h 主机ip -u 用户名 -p;

只要知道了主机ip 和用户名即可同时要在环境变量里面配置了MysqL安装的bin目录

原文链接:https://www.f2er.com/mysql/530270.html

猜你在找的MySQL相关文章