- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
像许多 Postgres n00bs
一样,我们有很多带有未索引外键约束的表。在某些情况下,这不会对性能造成很大影响 - 但这需要进一步分析。
我已阅读以下文章:https://www.cybertec-postgresql.com/en/index-your-foreign-key/
并使用以下查询查找所有没有索引的外键:
SELECT c.conrelid::regclass AS "table",
/* list of key column names in order */
string_agg(a.attname, ',' ORDER BY x.n) AS columns,
pg_catalog.pg_size_pretty(
pg_catalog.pg_relation_size(c.conrelid)
) AS size,
c.conname AS constraint,
c.confrelid::regclass AS referenced_table
FROM pg_catalog.pg_constraint c
/* enumerated key column numbers per foreign key */
CROSS JOIN LATERAL
unnest(c.conkey) WITH ORDINALITY AS x(attnum, n)
/* name for each key column */
JOIN pg_catalog.pg_attribute a
ON a.attnum = x.attnum
AND a.attrelid = c.conrelid
WHERE NOT EXISTS
/* is there a matching index for the constraint? */
(SELECT 1 FROM pg_catalog.pg_index i
WHERE i.indrelid = c.conrelid
/* the first index columns must be the same as the
key columns, but order doesn't matter */
AND (i.indkey::smallint[])[0:cardinality(c.conkey)-1]
@> c.conkey::int[])
AND c.contype = 'f'
GROUP BY c.conrelid, c.conname, c.confrelid
ORDER BY pg_catalog.pg_relation_size(c.conrelid) DESC;
对于具有复合唯一约束的表,这只显示了唯一索引中的“一个”列:
\d topics_items;
-----------------+---------+--------------+---------------+------------------------------
topics_items_id | integer | | not null | generated always as identity
topic_id | integer | | not null |
item_id | integer | | not null |
Index:
"topics_items_pkey" PRIMARY KEY, btree (topics_items_id)
"topic_id_item_id_unique" UNIQUE CONSTRAINT, btree (topic_id, item_id)
Foreign Keys:
"topics_items_item_id_fkey" FOREIGN KEY (item_id) REFERENCES items(item_id) ON DELETE CASCADE
"topics_items_topic_id_fkey" FOREIGN KEY (topic_id) REFERENCES topics(topic_id) ON DELETE CASCADE
在这种情况下,检查查询仅找到 item_id
而不是 topic_id
作为未索引字段。
公平地说,这只是所用查询的问题,我必须分别为两个字段(topic_id 和 item_id)编制索引 - 或者是否涉及一些黑魔法,只有 item_id
需要一个索引?
最佳答案
tl;dr 您需要在 item_id
上添加索引。 Postgres 索引的“黑魔法”包含在 11. Indexes 中。 .
您在 (topic_id, item_id)
上有一个复合索引,列顺序很重要。 Postgres 可以使用它来索引topic_id
上的查询,topic_id
和item_id
上的查询,但不是(或效率较低)item_id
单独。
来自 11.3. Multicolumn Indexes ...
A multicolumn B-tree index can be used with query conditions that involve any subset of the index's columns, but the index is most efficient when there are constraints on the leading (leftmost) columns.
-- indexed
select *
from topics_items
where topic_id = ?
-- also indexed
select *
from topics_items
where topic_id = ?
and item_id = ?
-- probably not indexed
select *
from topics_items
where item_id = ?
这是因为像 (topic_id, item_id)
这样的复合索引首先存储主题 ID,然后是具有该主题 ID 的项目 ID。为了在此索引中有效地查找项目 ID,Postgres 必须首先使用主题 ID 缩小搜索范围。
Postgres 可以 反转索引,如果它认为值得的话。如果有少量可能的主题 ID,而大量可能的索引 ID,它将在每个主题 ID 中搜索索引 ID。
例如,假设您有 10 个可能的主题 ID 和 1000 个可能的项目 ID 以及您的索引 (topic_id, index_id)
。这就像有 10 个清晰标记的主题 ID 桶,每个桶内有 1000 个清晰标记的项目 ID 桶。要获取项目 ID 存储桶,它必须查看每个主题 ID 存储桶的内部。要在 where item_id = 23
上使用此索引,Postgres 必须在 10 个主题 ID 存储桶中的每一个中搜索所有具有项目 ID 23 的存储桶。
但是如果您有 1000 个可能的主题 ID 和 10 个可能的项目 ID,Postgres 将不得不搜索 1000 个主题 ID 桶。它很可能会改为进行全表扫描。在这种情况下,您需要反转索引并使其成为 (item_id, topic_id)
。
这在很大程度上取决于良好的表统计信息,这意味着确保 autovacuum 正常工作。
因此,如果一列的可变性远低于另一列,那么您可以为两列使用单个索引。
Postgres can also use mulitple indexes if it thinks it will make the query run faster .例如,如果您在 topic_id
上有一个索引,在 item_id
上有一个索引,它可以使用这两个索引并组合结果。例如,其中 topic_id = 23 或 item_id = 42
可以使用 topic_id 索引搜索主题 ID 23,使用 item_id 索引搜索项目 ID 42,然后合并结果。
这通常比复合 (topic_id, item_id)
索引慢。它也可能比使用单个索引慢,所以如果 Postgres 决定不使用多个索引,请不要感到惊讶。
一般来说,对于 b-tree 索引,当你有两列时,你有三种可能的组合。
你需要两个索引。
(a, b)
涵盖了对 a 和 a + b 的搜索。 (b)
包含搜索 b
。
当你有三列时,你有七种可能的组合。
但你只需要三个索引。
但是,您实际上可能希望避免在三列上建立索引。它通常较慢。你真正想要的是这个。
Multicolumn indexes should be used sparingly. In most situations, an index on a single column is sufficient and saves space and time. Indexes with more than three columns are unlikely to be helpful unless the usage of the table is extremely stylized.
从索引中读取比从表中读取慢。您希望索引减少必须读取的行数,但又不希望 Postgres 不得不进行不必要的索引扫描。
Constraints on columns to the right... are checked in the index, so they save visits to the table proper, but they do not reduce the portion of the index that has to be scanned. For example, given an index on (a, b, c) and a query condition WHERE a = 5 AND b >= 42 AND c < 77, the index would have to be scanned from the first entry with a = 5 and b = 42 up through the last entry with a = 5. Index entries with c >= 77 would be skipped, but they'd still have to be scanned through.
关于sql - 在 Postgresql 中索引外键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60804217/
SQL、PL-SQL 和 T-SQL 之间有什么区别? 谁能解释一下这三者之间的区别,并提供每一个的相关使用场景? 最佳答案 SQL 是一种对集合进行操作的查询语言。 它或多或少是标准化的,几乎所有关
这个问题已经有答案了: What is the difference between SQL, PL-SQL and T-SQL? (6 个回答) 已关闭 9 年前。 我对 SQL 的了解足以完成我的
我在数据库中有一个 USER 表。该表有一个 RegistrationDate 列,该列有一个默认约束为 GETDATE()。 使用 LINQ 时,我没有为 RegistrationDate 列提供任
我有一个可能属于以下类型的字符串 string expected result 15-th-rp 15 15/12-rp 12 15-12-th
很难说出这里问的是什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或言辞激烈,无法以目前的形式合理回答。如需帮助澄清此问题以便可以重新打开,visit the help center . 9年前关闭
我有一个存储过程(称为 sprocGetArticles),它从文章表中返回文章列表。这个存储过程没有任何参数。 用户可以对每篇文章发表评论,我将这些评论存储在由文章 ID 链接的评论表中。 有什么方
我目前正在做一个 *cough*Oracle*cough* 数据库主题。讲师介绍embedded SQL作为让其他语言(例如 C、C++)与(Oracle)数据库交互的方式。 我自己做了一些数据库工作
SQL Server 中 SQL 语句的最大长度是多少?这个长度是否取决于 SQL Server 的版本? 例如,在 DECLARE @SQLStatement NVARCHAR(MAX) = N'S
这个问题已经有答案了: Simple way to transpose columns and rows in SQL? (9 个回答) 已关闭 8 年前。 CallType
预先感谢您对此提供的任何帮助。 假设我有一个查询,可以比较跨年的数据,从某个任意年份开始,永无止境(进入 future ),每年同一时期直到最后一个完整的月份(其特点是一月数据永远不会显示至 2 月
我在数据库中有一个 USER 表。该表有一个 RegistrationDate 列,该列的默认约束为 GETDATE()。 使用 LINQ 时,我没有为 RegistrationDate 列提供任何数
下面是我试图用来检查存储过程是否不存在然后创建过程的 sql。它会抛出一个错误:Incorrect syntax near the keyword 'PROCEDURE' IF NOT EXISTS
我有一个同事声称动态 SQL 在许多情况下比静态 SQL 执行得更快,所以我经常看到 DSQL 到处都是。除了明显的缺点,比如在运行之前无法检测到错误并且更难阅读,这是否准确?当我问他为什么一直使用
来自 lobodava 的动态 SQL 查询是: declare @sql nvarchar(4000) = N';with cteColumnts (ORDINAL_POSITION, CO
使用 SQL Server 中的存储过程执行动态 SQL 命令的现实优点和缺点是什么 EXEC (@SQL) 对比 EXEC SP_EXECUTESQL @SQL ? 最佳答案 sp_executes
我有这个有效的 SQL 查询: select sum(dbos.Points) as Points, dboseasons.Year from dbo.StatLines dbos i
我正在调试一些构建成功运行的 SQL 命令的代码。 然而,在查询结束时,查询结果似乎被写入了一个文本文件。 完整的查询如下 echo SELECT DATE,DATETABLE,DATE,APPDAT
我有一些创建表的 .sql 文件(MS SQL 数据库): 表_1.sql: IF OBJECT_ID (N'my_schema.table1', N'U') IS NOT NULL DROP TAB
我写了下面的 SQL 存储过程,它一直给我错误@pid = SELECT MAX(... 整个过程是: Alter PROCEDURE insert_partyco @pname varchar(20
我在 SQL Server 2005 中有包含两列 Fruit 和 Color 的表,如下所示 Fruit Colour Apple Red Orange
我是一名优秀的程序员,十分优秀!