Clustered Index Vs Non-Clustered Index

Clustered index (Primary index)

Clustered index defines the way that the table physically store the records.

By default, clustered index is created on a primary key column

Non-clustered index (Secondary Key)

Doesn't physically define the way that table physically store the records. Just a normal index like describe in Database index (Secondary Key)