MySQL快速刪除全部表

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