“Selecione Indexos PostGres” Respostas de código

Selecione Indexos PostGres

SELECT
    tablename,
    indexname,
    indexdef
FROM
    pg_indexes;
Energetic Eland

ÍNDICE POSTGES

CREATE INDEX <index_name> ON <table_name> (<column_name>);
Energetic Eland

Selecione IndexName PSQL

SELECT
    indexname,
    indexdef
FROM
    pg_indexes
WHERE
    tablename = 'table_name';
Code language: JavaScript (javascript)
Cloudy Copperhead

Respostas semelhantes a “Selecione Indexos PostGres”

Perguntas semelhantes a “Selecione Indexos PostGres”

Mais respostas relacionadas para “Selecione Indexos PostGres” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código