Mysql刪除全部表不刪除數據庫方法

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