Quote Originally Posted by madhugp View Post
I heard that a clustered index will be created automatically
for primary key. As per my knowledge cluster means combination of two common columns of two tables. But how does a primary key creates the
cluster index? for which cluster it creates the index?
"Clustered Index" is a SQL Server concept - closest thing in Oracle is an IOT e.g. Index Organized Table.

A PK constraint requires to have a unique index on a not nul column (or set of columns)