information_schema.table_constraintsकोड का इस्तेमाल करें>
तालिका प्रत्येक तालिका पर परिभाषित बाधाओं के नाम प्राप्त करने के लिए:
select *
from information_schema.table_constraints
where constraint_schema = 'YOUR_DB'
information_schema.key_column_usage<का इस्तेमाल करें /कोड>
उन बाधाओं में से प्रत्येक में फ़ील्ड प्राप्त करने के लिए तालिका:
select *
from information_schema.key_column_usage
where constraint_schema = 'YOUR_DB'
यदि इसके बजाय आप विदेशी कुंजी बाधाओं के बारे में बात कर रहे हैं, तो का उपयोग करें। information_schema.referential_constraints
:
select *
from information_schema.referential_constraints
where constraint_schema = 'YOUR_DB'