例如,当前对INFORMATION_SCHEMA视图的简单查询
SELECT TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_SCHEMA='HumanResources' and TABLE_NAME like '%EMP%'
花相当长的时间。
我听说过这样的解决方法,比如:show tables
,然后使用:select * from table(result_scan(last_query_id()))
但我不想改变我的脚本。有没有办法加快这些查询的速度,为什么它们速度这么慢?
发布于 2020-11-30 09:15:49
大多数给我带来问题的查询都是这样的:
select * from information_schema.tables t inner
join information_schema.columns c on c.table_schema = t.table_schema and c.table_name = t.table_name
where t.table_type = 'BASE TABLE' and
lower(column_name) ='xxxx'
order by t.table_schema, t.table_name;
或
select * from information_schema.tables where upper(table_name) = 'some_table'
我的信息模式有9045行。
我的测试表明,使用上(Table_name)或下(Table_name)为我的查询增加了大量时间。
例如:
select * from information_schema.tables where upper(table_name) = 'some_table'
需要6.97秒
和
select * from information_schema.tables where upper(table_name) = 'some_table'
取1.84
我们还注意到,information_schema值总是大写的,所以我们将这些值中的大部分更改为大写。
发布于 2020-12-08 12:36:26
发布于 2021-09-01 00:12:41
可能是将函数应用于列本身。这迫使查询引擎扫描整个表,而不是一个子集。如果可以,可以将函数应用于where子句的静态/值部分,而不是列本身。
https://stackoverflow.com/questions/65041926
复制相似问题