mysql query to see the indexes on table code example
Example 1: show indexes mysql
SHOW INDEX FROM yourtable;
Example 2: check all indexes on table
SELECT
tablename,
indexname,
indexdef
FROM
pg_indexes
WHERE
schemaname = 'yourschema' and tablename='yourtable'
ORDER BY
tablename,
indexname;
(POSTRGRESQL)