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

 
(사용자 2명의 중간 판 17개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;MySQL SHOW TABLES
;MySQL SHOW TABLES
* 테이블 목록을 출력하는 MySQL 쿼리문
==예시 1==
<syntaxhighlight lang='mysql' run>
SHOW TABLES
</syntaxhighlight>
==예시 2==
<syntaxhighlight lang='mysql' run>
USE Northwind;
SHOW TABLES;
</syntaxhighlight>
==예시 2==
<syntaxhighlight 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)
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[MySQL SHOW DATABASES]]
*[[MySQL 테이블 생성 쿼리 보기 SHOW CREATE TABLE]]
*[[MySQL 데이터베이스 목록 조회 SHOW DATABASES]]
*[[MySQL 뷰 목록 조회]]
*[[MySQL SHOW TABLE STATUS]]
*[[MySQL SHOW]]
*[[SHOW TABLES]]
*[[SHOW TABLES]]


[[분류: MySQL]]
==참고==
* http://dev.mysql.com/doc/refman/5.7/en/show-tables.html
 
[[분류: MySQL 테이블]]

2021년 7월 25일 (일) 18:29 기준 최신판

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 }}