"MySQL - SHOW TABLES"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
==개요==
==개요==
;MySQL SHOW TABLES
;MySQL SHOW TABLES
* 테이블 목록을 출력하는 MySQL 쿼리문
<source lang='console'>
mysql> SHOW TABLES;
+-----------------------+
| Tables_in_pizza_store |
+-----------------------+
| crust_sizes          |
| crust_types          |
| customers            |
| orders                |
| pizza_toppings        |
| pizzas                |
| toppings              |
+-----------------------+
7 rows in set (0.00 sec)
</source>


==같이 보기==
==같이 보기==

2016년 4월 13일 (수) 19:27 판

1 개요

MySQL SHOW TABLES
  • 테이블 목록을 출력하는 MySQL 쿼리문
mysql> SHOW TABLES;
+-----------------------+
| Tables_in_pizza_store |
+-----------------------+
| crust_sizes           | 
| crust_types           | 
| customers             | 
| orders                | 
| pizza_toppings        | 
| pizzas                | 
| toppings              | 
+-----------------------+
7 rows in set (0.00 sec)

2 같이 보기

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