MySQL - SHOW TABLES

(MySQL SHOW TABLES에서 넘어옴)

1 개요[ | ]

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

2 예시 1[ | ]

SHOW TABLES

3 예시 2[ | ]

USE Northwind;
SHOW TABLES;

4 예시 2[ | ]

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 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}