📜  获取所有索引 postgres - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:03.529000             🧑  作者: Mango

代码示例2
-- This will also return use the hidden index that automatically created by primary key and unique....
SELECT relname, relkind
FROM pg_class
WHERE relkind = 'i';