安装
新一2026-07-20小于 1 分钟-约 154 字
约 154 字小于 1 分钟
2026-07-20
安装
Windows 平台
Linux平台
连接
命令行连接
mysql -u root -p执行完毕输入密码
D:\Users\zhaohui\Desktop>mysql -u root -p
Enter password: **** # 数据库密码
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 18
Server version: 9.5.0 MySQL Community Server - GPL
Copyright (c) 2000, 2025, 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> SHOW DATABASES;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
+--------------------+
4 rows in set (0.110 sec)