Musisz pobrać nazwy tabel, uruchamiając następujące zapytanie:
SELECT *
FROM information_schema.constraint_table_usage
WHERE table_name = 'your_table'
Alternatywnie możesz użyć pg_constraint
aby pobrać te informacje
select n.nspname as schema_name,
t.relname as table_name,
c.conname as constraint_name
from pg_constraint c
join pg_class t on c.conrelid = t.oid
join pg_namespace n on t.relnamespace = n.oid
where t.relname = 'your_table_name';
Następnie możesz uruchomić wymaganą instrukcję ALTER TABLE:
ALTER TABLE your_table DROP CONSTRAINT constraint_name;
Oczywiście możesz sprawić, że zapytanie zwróci pełną instrukcję alter:
SELECT 'ALTER TABLE '||table_name||' DROP CONSTRAINT '||constraint_name||';'
FROM information_schema.constraint_table_usage
WHERE table_name in ('your_table', 'other_table')
Nie zapomnij uwzględnić schematu table_schema w klauzuli WHERE (i instrukcji ALTER), jeśli istnieje wiele schematów z tymi samymi tabelami.