查询mysql数据库中指定表指定日期的数据?有详细
问题描述
use information_schema;select table_name,table_rows from tableswhere TABLE_SCHEMA = ’test’order by table_rows desc;
上面是现有的查询语句,可以查到整个数据库中所有的表以及表里有多少数据。现在我想细分一下:比如test数据库中有1000张表,我只想查其中的200张(指定的)包含指定日期的(有日期这个字段,类型是mediumtext)有多少条数据。请问下这种该怎么写查询语句?
-----------------修改后的问题----------------------是我表述不清,我重新描述下:
如上图,我在test数据库有很多张表,每张表里都有很多数据。每张表都有一个字段“时间”,类型是mediumtext,如2017-5-9 16:44:24。我想一次查询多张表,每张表分别有多少条包含指定“时间”(2017-5-9)的数据。
问题解答
回答1:use information_schema;select table_name,table_rows from tableswhere TABLE_SCHEMA = ’test’ and TABLE_NAME in (’指定1’,’指定2’,.......,’指定200’) and UPDATE_TIME = ’指定時間’order by table_rows desc;
回答2:楼主说的是找到包含指定类型的日期字段的表吧?information_schema还有一个columns表,联查就有了
select a.table_name,a.table_rows from tables a join columns b on a.table_name=b.table_name and a.table_schema=b.table_schemawhere a.TABLE_SCHEMA = ’test’ and b.DATA_TYPE=’mediumtext’ and COLUMN_NAME=’指定日期字段’order by table_rows desc;
相关文章:
1. MySQL数据库中文乱码的原因2. dockerfile - 我用docker build的时候出现下边问题 麻烦帮我看一下3. angular.js - 关于$apply()4. 如何解决Centos下Docker服务启动无响应,且输入docker命令无响应?5. nignx - docker内nginx 80端口被占用6. mysql - 新浪微博中的关注功能是如何设计表结构的?7. angular.js - Ionic 集成crosswalk后生成的apk在android4.4.2上安装失败???8. dockerfile - [docker build image失败- npm install]9. css - C#与java开发Windows程序哪个好?10. angular.js使用$resource服务把数据存入mongodb的问题。
