查询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. java固定键值转换,使用枚举实现字典?2. javascript - 移动端开发 H5 页面在 iOS手机上无法实现 长按复制文本 求解决3. 如何解决tp6在zend中无代码提示4. java - HTTPS双向认证基础上有无必要再进行加签验签?5. vim - win10无法打开markdown编辑器6. html - 如何使用用户输入的数据去运行一个数学公式,最后怎么返回。7. python - flask学习,user_syy添加报role is invalid keyword for User.8. 这是什么情况???9. css3 - less或者scss 颜色计算的知识应该怎么学?或者在哪里学?10. javascript - 有没有类似高铁管家的时间选择插件
