MySQL是一種開放源代碼的關(guān)系型數(shù)據(jù)庫管理系統(tǒng),廣泛應(yīng)用在各種網(wǎng)站和應(yīng)用中。在使用MySQL時,常常需要開啟命令提示符,以便執(zhí)行命令和查看輸出結(jié)果。下面介紹如何在Windows系統(tǒng)下開啟MySQL命令提示符。
首先,需要進(jìn)入MySQL安裝目錄下的bin文件夾,例如C:\Program Files\MySQL\MySQL Server 8.0\bin。可以通過在Windows資源管理器中直接打開該目錄,或在命令提示符中使用cd命令切換到該目錄。
cd "C:\Program Files\MySQL\MySQL Server 8.0\bin"
接著輸入以下命令來連接MySQL服務(wù)器:
mysql -u root -p
其中,-u參數(shù)指定用戶名,這里使用root用戶;-p參數(shù)表示需要輸入密碼。輸入該命令后,會提示輸入密碼,輸入正確密碼即可登錄MySQL。
如果登錄成功,則會看到類似以下信息:
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 11 Server version: 8.0.25 MySQL Community Server - GPL Copyright (c) 2000, 2021, 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.
現(xiàn)在已經(jīng)進(jìn)入到MySQL命令提示符界面了,可以執(zhí)行各種MySQL命令了。例如,執(zhí)行以下命令可以查看當(dāng)前所有的數(shù)據(jù)庫:
show databases;
執(zhí)行完畢后,會顯示當(dāng)前所有的數(shù)據(jù)庫:
+--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 4 rows in set (0.00 sec)
總之,開啟MySQL命令提示符非常簡單,只需在bin目錄下登錄MySQL即可。然后就可以執(zhí)行各種MySQL命令了。