输入banner图图片脚本导航/分类

SQL语句

1.查询数据库中所有表的数据量,并排序

 

 USE information_schema;

 SELECT table_name,table_rows FROM TABLES  WHERE table_schema = "oms" ORDER BY table_rows DESC;   2.快速清除某张表数据     TRUNCATE  t_user (表名)   3.source 导入数据

source D:\db.sql;

SQL语句

标签:表名   数据   数据库   快速   select   where   ext   body   orm