mysql 第一次启动及常用命令

Posted jwang106

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 第一次启动及常用命令相关的知识,希望对你有一定的参考价值。



启动

mysql -u root -p

进入后

# 显示有几个数据库
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)

# 切换数据库
mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed

# 显示有几个数据表
mysql> show tables;
# 不用再切换表了 直接使用
mysql> select * from user;







以上是关于mysql 第一次启动及常用命令的主要内容,如果未能解决你的问题,请参考以下文章

Mysql常用命令 连接Mysql数据库及修改用户密码

mysql及mariadb常用命令一览

MYSQL常用命令~

mysql 常用命令集锦

Mysql常用命令详解

Mysql常用命令详解