mysql, mariadb 테이블 일괄 삭제
페이지 정보
작성자
본문
가끔씩 쓸 때가 있다.
use 데이터베이스이름;
set @tables = null;
select group_concat(table_schema, '.', table_name) into @tables from information_schema.tables where table_schema = '데이터베이스이름';
set @tables = concat('drop table ', @tables);
prepare stmt from @tables;
execute stmt;
deallocate prepare stmt;
show tables;
댓글목록
등록된 댓글이 없습니다.