
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
Get a list of Constraints from MySQL Database?
To get a list of constraints from MySQL database, use the following syntax −
select *from information_schema.table_constraints where constraint_schema = 'yourDatabaseName';
Here, we will get the constraints from the database “business”. The following is the query to list the constraints of all the tables in the database “business” −
mysql> select * −> from information_schema.table_constraints −> where constraint_schema = 'business';
The following is the output displaying all the constraints −
+--------------------+-------------------+--------------------------+--------------+------------------------------+-----------------+ | CONSTRAINT_CATALOG | CONSTRAINT_SCHEMA | CONSTRAINT_NAME | TABLE_SCHEMA | TABLE_NAME | CONSTRAINT_TYPE | +--------------------+-------------------+--------------------------+--------------+------------------------------+-----------------+ | def | business | PRIMARY | business | primarytable | PRIMARY KEY | | def | business | PRIMARY | business | primarytable1 | PRIMARY KEY | | def | business | PRIMARY | business | autoincrementtable | PRIMARY KEY | | def | business | PRIMARY | business | demoauto | PRIMARY KEY | | def | business | PRIMARY | business | autoincrement | PRIMARY KEY | | def | business | PRIMARY | business | primarytabledemo | PRIMARY KEY | | def | business | PRIMARY | business | sequencedemo | PRIMARY KEY | | def | business | PRIMARY | business | updtable | PRIMARY KEY | | def | business | PRIMARY | business | transcationdemo | PRIMARY KEY | | def | business | PRIMARY | business | triggedemo | PRIMARY KEY | | def | business | PRIMARY | business | usernameandpassworddemo | PRIMARY KEY | | def | business | UserId | business | usernameandpassworddemo | UNIQUE | | def | business | PRIMARY | business | tblp | PRIMARY KEY | | def | business | name | business | uniquedemo | UNIQUE | | def | business | name | business | uniqueconstdemo | UNIQUE | | def | business | PRIMARY | business | keydemo | PRIMARY KEY | | def | business | PRIMARY | business | nextiddemo | PRIMARY KEY | | def | business | PRIMARY | business | tablepri | PRIMARY KEY | | def | business | ConstFK | business | tabledemo2 | UNIQUE | | def | business | ConstFK | business | tabledemo3 | UNIQUE | | def | business | PRIMARY | business | college | PRIMARY KEY | | def | business | id | business | uniquedemo1 | UNIQUE | | def | business | id | business | uniqueautoid | UNIQUE | | def | business | PRIMARY | business | schemadatabasemethoddemo | PRIMARY KEY | | def | business | PRIMARY | business | employeeinformation | PRIMARY KEY | | def | business | name | business | addingunique | UNIQUE | | def | business | PRIMARY | business | parentdemo | PRIMARY KEY | | def | business | PRIMARY | business | lastinsertrecordiddemo | PRIMARY KEY | | def | business | PRIMARY | business | demoindex | PRIMARY KEY | | def | business | PRIMARY | business | compositeprimarykey | PRIMARY KEY | | def | business | PRIMARY | business | addingautoincrement | PRIMARY KEY | | def | business | Id | business | uniqueconstrainttable | UNIQUE | | def | business | PRIMARY | business | mergedemo1 | PRIMARY KEY | | def | business | PRIMARY | business | mergedemo2 | PRIMARY KEY | | def | business | PRIMARY | business | foreigntable1 | PRIMARY KEY | | def | business | PRIMARY | business | twoprimarykeytabledemo | PRIMARY KEY | | def | business | PRIMARY | business | showconstraintsdemo | PRIMARY KEY | | def | business | BookAuthor | business | showconstraintsdemo | UNIQUE | | def | business | PRIMARY | business | autoincrementtozero | PRIMARY KEY | | def | business | PRIMARY | business | altertabletoaddautoincrement | PRIMARY KEY | | def | business | PRIMARY | business | addingprimarykeydemo | PRIMARY KEY | | def | business | PRIMARY | business | resetprimarykey | PRIMARY KEY | | def | business | constFKPK | business | foreigntable | FOREIGN KEY | | def | business | FKConst | business | foreigntabledemo | FOREIGN KEY | | def | business | ConstFK | business | tblf | FOREIGN KEY | | def | business | StudCollegeConst | business | studentenrollment | FOREIGN KEY | | def | business | ConstChild | business | childdemo | FOREIGN KEY | | def | business | primarytable1demo_ibfk_1 | business | primarytable1demo | FOREIGN KEY | +--------------------+-------------------+--------------------------+--------------+------------------------------+-----------------+ 48 rows in set, 2 warnings (0.24 sec)
- Related Articles
- Get a list of Foreign Key constraints in MySQL
- Get a list of non-empty tables in a particular MySQL database?
- How can we get the list of tables in a particular database from MySQL Server command line?
- How to get the list of tables in default MySQL database?
- How to get field name types from a MySQL database?
- Get database name from a query implemented in a MySQL Stored Procedure?
- How can we write PHP script to get the list of MySQL database?
- Get maximum date from a list of varchar dates in MySQL
- Get the last record from a table in MySQL database with Java?
- How to get ER model of database from server with MySQL Workbench?
- Get all the tables from a MySQL database having a specific column, let’s say xyz?
- What are MySQL constraints?
- How to get a list of MySQL views?
- How to get a list of MySQL indexes?
- Get a list of MySQL databases and version?

Advertisements