sql >> Database teknologi >  >> RDS >> Mysql

Hvordan viser jeg unikke begrænsninger for en tabel i MySQL?

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


  1. MySQL-injektionsbeskyttelse og sårbarhedstegn ved hjælp af PHP

  2. 6 måder at tjekke din MariaDB-version på

  3. MySQL NULLIF() Forklaret

  4. MySQL Connector/Python - indsæt python-variabel til MySQL-tabel