查询mysql数据库中指定表指定日期的数据?有详细
PHP中文网
PHP中文网 2017-05-18 10:49:37
0
2
1011
use information_schema;
select table_name,table_rows from tables
where TABLE_SCHEMA = 'test'
order by table_rows desc;

上面是现有的查询语句,可以查到整个数据库中所有的表以及表里有多少数据。
现在我想细分一下:
比如test数据库中有1000张表,我只想查其中的200张(指定的)包含指定日期的(有日期这个字段,类型是mediumtext)有多少条数据。
请问下这种该怎么写查询语句?

-----------------修改后的问题----------------------
是我表述不清,我重新描述下:

如上图,我在test数据库有很多张表,每张表里都有很多数据。每张表都有一个字段“时间”,类型是mediumtext,如2017-5-9 16:44:24。
我想一次查询多张表,每张表分别有多少条包含指定“时间”(2017-5-9)的数据。

PHP中文网
PHP中文网

认证0级讲师

全部回复(2)
过去多啦不再A梦

use information_schema;
从表中选择table_name,table_rows
where TABLE_SCHEMA = 'test' and TABLE_NAME in ('Specification 1','Specification 2',.......,'Specification 200') and UPDATE_TIME = 'Specification时间'
order by table_rows desc;

给我你的怀抱

楼主说的是找到包含指定类型的日期字段的表吧?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_schema
where a.TABLE_SCHEMA = 'test' and b.DATA_TYPE='mediumtext' and COLUMN_NAME='指定日期字段'
order by table_rows desc;
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板