码迷,mamicode.com
首页 > 数据库 > 详细

dos进入mysql

时间:2015-11-05 00:24:30      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:


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目录

 

dos进入mysql

标签:

原文地址:http://www.cnblogs.com/zshboke-2015/p/4937724.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!