| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- SELECT
- TABLE_NAME,
- TABLE_COMMENT,
- TABLE_TYPE,
- ENGINE,
- VERSION,
- ROW_FORMAT,
- TABLE_ROWS,
- AVG_ROW_LENGTH,
- DATA_LENGTH,
- CREATE_TIME,
- UPDATE_TIME
- FROM information_schema.TABLES
- WHERE TABLE_SCHEMA = 'lq_db_dev'
- ORDER BY TABLE_NAME;
- TRUNCATE TABLE t_image_category; -- 图片分类表
- TRUNCATE TABLE t_image_info; -- 图片信息表
- TRUNCATE TABLE t_oauth_access_tokens; -- 访问令牌表
- TRUNCATE TABLE t_oauth_authorization_codes; -- 授权码表
- TRUNCATE TABLE t_oauth_token_blacklist; -- 令牌黑名单表
- TRUNCATE TABLE t_samp_construction_plan_base_info; -- 施工方案知识库
- TRUNCATE TABLE t_samp_standard_base_info; -- 施工标准规范
- TRUNCATE TABLE t_samp_office_regulations; -- 办公制度知识库
- TRUNCATE TABLE t_samp_custom_schema; -- 知识库自定义Schema表
- TRUNCATE TABLE t_samp_doc_category; -- 文档分类表
- TRUNCATE TABLE t_samp_document_main; -- 文档主表
- TRUNCATE TABLE t_samp_knowledge_base; -- 知识库表
- TRUNCATE TABLE t_samp_metadata; -- 元数据字段表
- TRUNCATE TABLE t_samp_search_engine; -- 搜索引擎表
- TRUNCATE TABLE t_samp_tag_category; -- 标签分类表
- TRUNCATE TABLE t_sys_login_log; -- 登录日志表
- TRUNCATE TABLE t_sys_operation_log; -- 操作日志表
- TRUNCATE TABLE t_sys_sync_log; -- 同步日志表
- TRUNCATE TABLE t_task_management; -- 任务管理表
|