show table like 'table_name'
즉, 파이썬에서는
check=show table like 'table_name'
curs.execute(check)
result = curs.fetchall()
테이블이 존재안하면 len(result) 가 0
테이블이 존재하면 len(result) 가 1
'OLD개발이야기 > Python-mysql' 카테고리의 다른 글
python type check (0) | 2017.04.26 |
---|---|
mysql 된다 (0) | 2017.04.22 |
python-mysql: find null data and replce -2 (0) | 2017.03.10 |
python-mysql: find null data and replce -1 (0) | 2017.03.09 |
python-mysql - null 값을 가진 날짜, 연도 구하기 (0) | 2017.03.09 |