刪除mysql數據庫中全部表

刪除表的命令 drop table 表名;python 若是有200張表,執行200次,想一想就不想動手了。mysql 下面提供一個使用information_schema庫的方案:web SELECT CONCAT('drop table ',table_name,';') FROM information_schema.`TABLES` WHERE table_schema='數據庫名'; 例
相關文章
相關標籤/搜索