Come ottengo un elenco di tutti i vincoli da un particolare database?
Risposte:
Usa la information_schema.table_constraints
tabella per ottenere i nomi dei vincoli definiti su ciascuna tabella:
select *
from information_schema.table_constraints
where constraint_schema = 'YOUR_DB'
Usa la information_schema.key_column_usage
tabella per ottenere i campi in ciascuno di questi vincoli:
select *
from information_schema.key_column_usage
where constraint_schema = 'YOUR_DB'
Se invece stai parlando di vincoli di chiave esterna, usa information_schema.referential_constraints
:
select *
from information_schema.referential_constraints
where constraint_schema = 'YOUR_DB'
information_schema.columns.column_default
.
Ottima risposta di @Senseful.
Presento una query modificata per coloro che cercano solo un elenco di nomi di vincoli (e non altri dettagli / colonne):
SELECT DISTINCT(constraint_name)
FROM information_schema.table_constraints
WHERE constraint_schema = 'YOUR_DB'
ORDER BY constraint_name ASC;
Questo aiuta davvero se vuoi vedere i vincoli di chiave primaria ed esterna, nonché le regole intorno a quei vincoli come ON_UPDATE e ON_DELETE e la colonna e i nomi delle colonne esterne tutti insieme:
SELECT tc.constraint_schema,tc.constraint_name,tc.table_name,tc.constraint_type,kcu.table_name,kcu.column_name,kcu.referenced_table_name,kcu.referenced_column_name,rc.update_rule,rc.delete_rule
FROM information_schema.table_constraints tc
inner JOIN information_schema.key_column_usage kcu
ON tc.constraint_catalog = kcu.constraint_catalog
AND tc.constraint_schema = kcu.constraint_schema
AND tc.constraint_name = kcu.constraint_name
AND tc.table_name = kcu.table_name
LEFT JOIN information_schema.referential_constraints rc
ON tc.constraint_catalog = rc.constraint_catalog
AND tc.constraint_schema = rc.constraint_schema
AND tc.constraint_name = rc.constraint_name
AND tc.table_name = rc.table_name
WHERE tc.constraint_schema = 'my_db_name'
Potresti anche voler aggiungere alcune ulteriori informazioni su quelle colonne, aggiungile semplicemente nell'SQL (e seleziona le colonne che desideri):
LEFT JOIN information_schema.COLUMNS c
ON kcu.constraint_schema = c.table_schema
AND kcu.table_name = c.table_name
AND kcu.column_name = c.column_name