sql >> Base de Datos >  >> RDS >> Mysql

¿Cómo muestro restricciones únicas de una tabla en MySQL?

select distinct CONSTRAINT_NAME
from information_schema.TABLE_CONSTRAINTS
where table_name = 'table_name' and constraint_type = 'UNIQUE';