Answers for "mysql show check constraints"

SQL
-2

mysql show check constraints

select COLUMN_NAME, CONSTRAINT_NAME, REFERENCED_COLUMN_NAME, REFERENCED_TABLE_NAME
from information_schema.KEY_COLUMN_USAGE
where TABLE_NAME = 'users';
Posted by: Guest on October-05-2020

Code answers related to "mysql show check constraints"

Code answers related to "SQL"

Browse Popular Code Answers by Language