MySQL - SHOW TABLES

(MySQL SHOW TABLES에서 넘어옴)

1 개요[ | ]

MySQL SHOW TABLES
  • 테이블 목록을 출력하는 MySQL 쿼리문

2 예시 1[ | ]

MySQL
CPU
0.6s
MEM
24M
4.2s
Copy
SHOW TABLES
+---------------------+
| Tables_in_wikipedia |
+---------------------+
| department          |
| employee            |
+---------------------+

3 예시 2[ | ]

MySQL
Copy
USE Northwind;
SHOW TABLES;
Loading

4 예시 2[ | ]

Console
Copy
mysql> SHOW TABLES;
+-----------------------+
| Tables_in_pizza_store |
+-----------------------+
| crust_sizes           | 
| crust_types           | 
| customers             | 
| orders                | 
| pizza_toppings        | 
| pizzas                | 
| toppings              | 
+-----------------------+
7 rows in set (0.00 sec)

5 같이 보기[ | ]

6 참고[ | ]