标签:set star names 0.00 ati 进入 row 使用 startup
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;
标签:set star names 0.00 ati 进入 row 使用 startup
原文地址:https://www.cnblogs.com/wangjiale1024/p/10266065.html