Sql show index on table postgresql
- how to show index in sql
- how to show index in sql server
- how to view index in sql
- how to see index in sql
Drop index in sql
Sql query to find indexes on a table in oracle!
SQL - Show Indexes
The SQL Show Index Statement
The SHOW INDEX is the basic SQL statement to retrieve the information about the indexes that have been defined on a table.
However, the SHOW INDEX statement only works on MySQL RDBMS and is not a valid statement in the SQL Server.
To list the indexes created on a table in SQL Server, a system stored procedure sp_helpindex is used.
The result-set obtained from querying the SHOW INDEX statement on a MySQL table contains the index information.
Syntax
Following is the syntax of the SHOW INDEX statement in MySQL −
SHOW INDEX FROM table_name;Example
Following example demonstrates the working of SHOW INDEX statement in MySQL.
First, create a table with the name CUSTOMERS in the MySQL database using the CREATE query below −
CREATE TABLE CUSTOMERS ( ID INT NOT NULL, NAME VARCHAR (20) NOT NULL, AGE INT NOT NULL, ADDRESS CHAR (25), SALARY DECIMAL (20, 2), PRIMARY KEY (ID) );Let us now insert some values into the above created table using the following query −
INSERT INTO CUSTOMERS VALUES (1, 'Ramesh', '32- how to find index in sql
- how to find index in sql server