1:打开任务管理器输入 mysql -uroot -p
回车然后再输入密码就可以登陆进MySQL
Enter password: ******
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 8.0.35 MySQL Community Server - GPL
Copyright (c) 2000, 2023, 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>
2:查看数据库使用 show databases;
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| id |
| information_schema |
| mtaokj |
| mysql |
| performance_schema |
| sys |
| wp_ |
+--------------------+
7 rows in set (0.11 sec)
3:使用(选择)数据库使用 use 数据库名;
我这里选择mtaokj这个数据库
mysql> use mtaokj;
Database changed
4:创建数据库使用 create database 数据库名 charset utf8;
这里我创建了一个名为zx的数据库
mysql> create database zx charset utf8;
Query OK, 1 row affected, 1 warning (0.19 sec)
5:删除数据库使用 drop database 数据库名;
这里我把刚才创建名为zx的数据库给删除
mysql> drop database zx;
Query OK, 0 rows affected (0.04 sec)
6:查看当前使用(选择的数据库) select database();
在3中我选择的是mtaokj这个数据库
mysql> select database();
+------------+
| database() |
+------------+
| mtaokj |
+------------+
1 row in set (0.00 sec)
输入返回mtaokj,说明你当前选择使用的数据库是mtaokj
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END