MySQL 테이블 있는지 확인

(MySQL 테이블 있는지 확인하기에서 넘어옴)
MySQL에서 테이블 있는지 확인하기

1 방법 1: SHOW TABLES[ | ]

SHOW TABLES LIKE '테이블명';
SHOW TABLES IN 디비명 LIKE '테이블명';
mysql> SHOW TABLES LIKE 'user';
+---------------------------+
| Tables_in_zetawiki (user) |
+---------------------------+
| user                      |
+---------------------------+
1 row in set (0.00 sec)
mysql> SHOW TABLES LIKE 'users';
Empty set (0.00 sec)

2 방법 2: Information_schema[ | ]

SELECT 1 FROM Information_schema.tables 
WHERE table_schema = 'DB명' 
AND table_name = '테이블명'

해당 테이블이 있으면 1, 없으면 (결과없음)을 반환

3 방법 3: Information_schema[ | ]

SELECT EXISTS (
  SELECT 1 FROM Information_schema.tables 
  WHERE table_schema = 'DB명' 
  AND table_name = '테이블명' 
) AS flag

해당 테이블이 있으면 flag=1, 없으면 flag=0을 반환

4 방법 4: PHP[ | ]

$mysqli = new mysqli('localhost','my_user','my_password','world');
$result = $mysqli->query("SHOW TABLES LIKE '테이블명'");
$exist = ( $result->num_rows > 0 );

5 같이 보기[ | ]

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