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

 
(사용자 2명의 중간 판 3개는 보이지 않습니다)
4번째 줄: 4번째 줄:


==예시 1==
==예시 1==
<source lang='mysql' run>
<syntaxhighlight lang='mysql' run>
SHOW TABLES
SHOW TABLES
</source>
</syntaxhighlight>


==예시 2==
==예시 2==
<source lang='mysql' run>
<syntaxhighlight lang='mysql' run>
USE sakila;
USE Northwind;
SHOW TABLES;
SHOW TABLES;
</source>
</syntaxhighlight>


==예시 2==
==예시 2==
<source lang='console'>
<syntaxhighlight lang='console'>
mysql> SHOW TABLES;
mysql> SHOW TABLES;
+-----------------------+
+-----------------------+
29번째 줄: 29번째 줄:
+-----------------------+
+-----------------------+
7 rows in set (0.00 sec)
7 rows in set (0.00 sec)
</source>
</syntaxhighlight>


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

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