MySQL資料庫之mysql5.7基礎 檢視一個資料庫中的所有表

dxyzhbb發表於2020-11-06

本文主要向大家介紹了MySQL資料庫之mysql5.7基礎 檢視一個資料庫中的所有表 ,通過具體的內容向大家展現,希望對大家學習MySQL資料庫有所幫助。

Operating System:UbuntuKylin 16.04 LTS 64bit
mysql: Ver 14.14 Distrib 5.7.17, for Linux (x86_64) using EditLine wrapper

login:

xinjin@xjPC:~$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.17-0ubuntu0.16.04.1 (Ubuntu)

Copyright © 2000, 2016, Oracle and/or its affiliates. All rights reserved.

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> show databases;
±-------------------+
| Database |
±-------------------+
| information_schema |
| myFirstDB |
| mysql |
| performance_schema |
| phpmyadmin |
| sys |
±-------------------+
6 rows in set (0.07 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;
±--------------------------+
| Tables_in_mysql |
±--------------------------+
| columns_priv |
| db |
| engine_cost |
| event |
| func |
| general_log |
| gtid_executed |
| help_category |
| help_keyword |
| help_relation |
| help_topic |
| innodb_index_stats |
| innodb_table_stats |
| ndb_binlog_index |
| plugin |
| proc |
| procs_priv |
| proxies_priv |
| server_cost |
| servers |
| slave_master_info |
| slave_relay_log_info |
| slave_worker_info |
| slow_log |
| tables_priv |
| time_zone |
| time_zone_leap_second |
| time_zone_name |
| time_zone_transition |
| time_zone_transition_type |
| user |
±--------------------------+
31 rows in set (0.00 sec)

退出:

mysql> exit
Bye

相關文章