Can Somebody tell me the difference between Clustered & Non-
Clustered Index??
Answer Posted / anjan ghosh
when we create index then we assign a primary or unique
field , after insert of records , the results is
clustered--(field) order by
nonclustered--no order(logical order)
create table nonclusterindex(Emid int,data varchar(800))
create table clusterindex(Emid int,data varchar(800))
create unique nonclustered index nonclusterindex_emid on
nonclusterindex (Emid)
create unique clustered index clusterindex_emid on
clusterindex (Emid)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the different type of replication in sql server?
Is there any performance difference between if exists (select null from table) and if exists (select 1 from table)?
What is advantage data architect?
Explain what is analysis service repository?
Is sql server 2016 free?
How does SSIS(Sql Server Integration Services) deffer from DTS(Data Transformation Services)?
What is user defined datatypes and when you should go for them?
You have a table ‘test’ which is a copy of northwind employee table you have written a trigger to update the field ‘hiredate’ with the current date
What is a recursive stored procedure in sql server?
What is the difference between ddl,dml and dcl commands?
how to do partition in sqlserver
How to provide default values to function parameters?
How to list all tables in the database using odbc_tables()?
When a primary key constraint is included in a table, what other constraints does this imply?
What are the types of sql server?