通過cmd命令串連mysql

來源:互聯網
上載者:User

    通過cmd的命令視窗串連mysql,只需要在命令列中輸入  mysql  -uroot -p123456 .它會出現這樣的提示:“mysql不是內部或外部命令”。解決辦法是在環境變數的path路徑下加入 C:\Program Files\MySQL\MySQL Server 5.6\bin。

如:

將mysql配置到環境變數後,在cmd的命令視窗輸入 “mysql  -uroot -p123456”即可。如:

到此就可以通過cmd命令串連mysql資料庫了。需要注意的是-u後面是串連資料庫的使用者名稱,沒有空格。-p後面是串連密碼,也沒有空格。

命令為:mysql -uroot -p123456

如果你在命令後面加了分號會出現:

C:\Users\Administrator>mysql -uroot -p123456;
Warning: Using a password on the command line interface can be insecure.
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: Y
ES)

解決辦法就是不要加分號。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.