清空表的時候注意外鍵約束
命令版
查詢數據庫中所有表名
select table_name from information_schema.tables where table_schema='DB_name' and table_type='base table';
查詢指定數據庫中指定表的所有字段名column_name
select column_name from information_schema.columns where table_schema='DB_name' and table_name='users'
清空數據庫中某表的數據
truncate table 表名 ;
navicat 版
選中你要清空的表,右鍵

清除索引、和外鍵



