mysql, mariadb 테이블 일괄 삭제
페이지 정보
작성자 상석하대 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 에필로그 댓글 0건 조회 3,956회 작성일 18-06-26 16:58본문
가끔씩 쓸 때가 있다.
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;
댓글목록
등록된 댓글이 없습니다.