gpt4 book ai didi

mysql - 动态mysql记录计数

转载 作者:行者123 更新时间:2023-11-29 19:58:12 26 4
gpt4 key购买 nike

我不是 MYSQL 专家,主要使用 tsql 进行开发,但我需要编写一段动态代码,该代码将根据特定日期范围提供每个表的记录数。下面的代码为我提供了数据库中所有表的行数,但我有第二个表,其中每个表都有一条记录,并说明它是否具有我可以查询的 create_date 字段。我想要做的是更改我的代码以查看辅助表并使用created_date 字段(如果可用)来构建选择语句。计划是在过程顶部传递一个日期,并仅在必填字段可用的情况下使用该日期来计算计数,如果不可用,将显示总记录计数。

希望这是有道理的,任何指点都将不胜感激,因为正如我之前所说,MYSQL 不是我的菜,但我想学习。

谢谢

SET SESSION group_concat_max_len = (1000000);
SET GLOBAL max_allowed_packet = (50*1024*1024);

select
-- Sort the tables by count
concat(
'select * from (',
-- Aggregate rows into a single string connected by unions
group_concat(
-- Build a "select count(1) from db.tablename" per table
concat('select ',
quote(db), ' db, ',
quote(tablename), ' tablename, '
'count(1) "rowcount" ',
'from ', db, '.', tablename)
separator ' union ')
, ') t ')
into @sql
from (
select
table_schema db,
table_name tablename
from information_schema.tables
where table_schema not in
('sampledatabase')
) t;

-- Execute @sql
prepare s from @sql; execute s; deallocate prepare s;

最佳答案

MySQL 实际上有一个表列列表,您可以在其中查找表是否有列 create_date 并在这种情况下添加 where 条件:

set @mydate = '2016-01-01';

select
-- Sort the tables by count
concat(
'select * from (',
-- Aggregate rows into a single string connected by unions
group_concat(
-- Build a "select count(1) from db.tablename" per table
concat('select ',
quote(db), ' db, ',
quote(tablename), ' tablename, ',
'count(1) rowcount, ',
has_createddate, ' filtered ',
'from `', db, '`.`', tablename,'`',
-- add "where" when the column is there
case when has_createddate = 1 then concat(' where create_date ',
-- your filter condition, e.g.
' >= ''', @mydate, '''')
else '' end
)
separator ' union ')
, ') t ')
into @sql
from (
select
t.table_schema db,
t.table_name tablename,
case when not c.COLUMN_NAME is null then 1 else 0 end has_createddate
from information_schema.tables t
left join information_schema.COLUMNS c
on t.table_schema = c.table_schema
and t.table_name = c.table_name
and c.column_name = 'create_date'
where t.table_schema not in ('sampledatabase')
) t;

您可以使用具有相同逻辑的自己的表。如果查找表中的字段包含要用于过滤的列名称(而不是常量 create_date),则可以在 concat 中使用该列,例如

... 
case when not filtercol is null then concat(' where `', filtercol, '`', ' >= ''',
...

关于mysql - 动态mysql记录计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40622308/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com