MySQL Tutorial

MySQL Tutorial MySQL Features MySQL Database Introduction MySQL Environmental Setup MySQL Data Types MySQL variable MySQL Advance table Query MySQL database queries MySQL Entity-Relationship Model MySQL Table Query MySQL Operators MySQL logical conditions MySQL Queries MySQL Clauses Clustered vs Non-Clustered Index MySQL Full text index MySQL Descending Index MySQL Invisible Index MySQL Composite Index MySQL Prefix index MySQL Index MySQL Create index MySQL Drop Index MySQL Show index MySQL Unique index MySQL Table MySQL Variable MySQL View MySQL Constraints MySQL Command Line Client Basic Queries MySQL Stored Procedure MySQL IF Statement MySQL Subquery MySQL Triggers

MySQL Join

MySQL Join MySQL CROSS JOIN MySQL DELETE JOIN MySQL EQUI JOIN MySQL INNER JOIN MySQL Union MySQL NATURAL JOIN MySQL RIGHT JOIN MySQL SELF JOIN MySQL UPDATE JOIN

MySQL Function

MySQL Function MySQL AVG() Function MySQL SUM() Function MySQL String() Function MySQL Advance() Function MySQL Aggregate() Function MySQL COALESCE() Function MySQL Control Flow Function MySQL COUNT() Function MySQL Date And Time Function MySQL GREATEST() Function MySQL ISNULL() Function MySQL LEAST() Function MySQL Math() Function MySQL MAX() Function MySQL MIN() Function MySQL find_in_set() function MySQL ASIN() Function MySQL CEIL() function MySQL CEILING() function MySQL TAN() Function MySQL Truncate() Function MySQL FLOOR() function MySQL LN() function MySQL LOG2() function MySQL LOG10() function MySQL MOD() function MySQL PI() function MySQL POW() function MySQL RADIANS() function MySQL RAND() function MySQL ROUND() function MySQL Character Length Function MySQL Current Date Function MySQL Date Add Function MySQL Date Format Function MySQL Datediff Function MySQL Day Function MySQL Elt Function MySQL Export Set Function MySQL Field Function MySQL Format Function MySQL From Base64 Function MySQL Hex Function MySQL Insert Function MySQL Instr Function MySQL Length Function MySQL CONCAT() function MySQL FIND_IN_SET() function MySQL LIKE() function MySQL LOAD_FILE() function MySQL LOCATE() function MySQL LOG() function MySQL MONTHNAME() function MySQL NOW() function MySQL PERIOD_ADD() function MySQL PERIOD_DIFF() function MySQL POWER() function MySQL QUARTER() function MySQL REVERSE() function MySQL RIGHT() Function MySQL RPAD() function MySQL RTRIM() function MySQL SEC_TO_TIME() function MySQL SOUNDEX() function

Questions

Which Clause is Similar to Having Clause in MySQL

Misc

MySQL Error 1046 - No Database Selected Failed to Start MySQL Service Unit MySQL Service Unit not Found Import MySQL Connector Mudule not Found Error No Module Named MySQL Joins Available in MySQL MySQL Docs MySQL Download For Windows 7 64 Bit MySQL Error Code 1064 MySQL Export MySQL History MySQL Host MySQL Import MySQL Drop All Tables MySQL Drop MySQL Error Code 1175 MySQL Events MySQL Except MYSQL Foreign Key Constraint MySQL If Exists MySQL IndexOf MySQL List All Tables json_extract in MySQL TIMESTAMPDIFF in MySQL MySQL Syntax Checker Sudo MySQL Secure Installation

Clustered vs Non-Clustered Index

Clustered vs. Non-Clustered Index

The difference between clustered and non-clustered index is the most famous question in the database-related interviews. Both indexes have the same physical structure and are stored as a BTREE structure. This article will explain the most common differences between them.

Clustered index

A clustered index is a table where the data for the rows are stored. This index assigns a primary query for unique or primary columns. The cluster table is working on the table using a key. Each table can contain only one clustered index. The primary key helps to display clustered index as per order.

Characteristic of the clustered index

  • The clustered index provides sorted data.
  • You use either single or multiple columns to assign as an index.
  • MySQL system stores index, column, and table data simultaneously.
  • It supports fragmentation about the index.
  • Cluster index operations support index scan and index seek.

Non-Clustered index

The indexes other than PRIMARY indexes (clustered indexes) are called non-clustered indexes.This index query assigns a secondary query for other columns except for the primary column. The non-clustered index stores data in one memory location and specify another index location.The multiple non-clustered indexes can be stored in a single table.The non-clustered index does not show in order.

Characteristic of the non-clustered index

  • The non-clustered index stores key values.
  • It supports secondary data columns.
  • The non-clustered index operations support index scan and index seek.
  • It supports to bridge for the table data.

Comparison between clustered and non clustered index

The following table helps to know the differences between the clustered and non-clustered indexes.

clustered indexNon clustered
The clustered index is called a primary index.The non-clustered index is called a secondary index.
The clustered index displays column data in order.The non-clustered index does not display data in order.
The clustered index sorts data or columns row using its key value.The non-clustered index stores data in one particular location and indicates another location.
The clustered index uses a leaf node to store the data page.The non-clustered index does not use a leaf node to store the index.
This index does not need extra disk space.This index needs extra disk space.
The clustered index accesses data faster.The non-clustered index accesses data slower.
The clustered index works on the primary key.The non-clustered index works on unique constraints but not a primary key.
A clustered index always contains an index id of 0.A non-clustered index always contains an index id>0.
The main feature of a clustered index is an improved speed and performance of the data.The main feature of the non-clustered index is to work on columns that are used in joins.