SELECT 1 FROM Information_schema.tables
WHERE table_schema = 'DB명'
AND table_name = '테이블명'
SELECT COUNT(*) FROM Information_schema.tables
WHERE table_schema = 'DB명'
AND table_name = '테이블명'
테이블 생성시에 확인
create table if not exists "table name" values;
'[ 서버 & DB 관련 ] > MySQL' 카테고리의 다른 글
MyISAM 과 InnoDB 엔진 비교, 그리고 잡다한 테스트.. (0) | 2019.09.04 |
---|---|
프로시저 및 동적쿼리 (0) | 2019.09.04 |
mysql 연결 오류 (타임존) - use a more specifc time zone value if you want to utilize time zone support (0) | 2019.08.08 |
다양한 조건에 따른 집계의 예제 (0) | 2019.07.18 |
MySQL - 일별통계, 주간통계, 월간통계 [펌] (0) | 2019.06.05 |