DOS(Disk Operating System)窗口是Windows操作系統下的命令行界面,我們可以通過它來查看MySQL數據庫。
首先,我們需要先進入MySQL的安裝目錄下的bin文件夾:
cd C:\Program Files\MySQL\MySQL Server 8.0\bin
然后,執行以下命令,進入MySQL:
mysql -u root -p
其中,-u表示用戶名,root為MySQL的默認用戶名;-p表示密碼,執行該命令后,會提示輸入密碼,輸入密碼后按回車即可。
如果一切順利,就可以看到MySQL的命令行界面了。
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 11 Server version: 8.0.19 MySQL Community Server - GPL Copyright (c) 2000, 2020, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>
現在,我們可以在MySQL命令行界面中執行各種SQL語句,如查看所有的數據庫:
show databases;
執行結果如下:
+--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 4 rows in set (0.02 sec)
這就是在DOS窗口中查看MySQL的方法。