Regarding MS SQL-Server, Is the Primary Key column of a table, included in the regular non-unique indexes on that table?
if not, would it make sense to include it in the index?
create table dbo.People (
PK_PersonId int not null,
PersonName nvarchar (100),
Bunch of Other Fields
,
so when creating an index on PersonName, would it make sense to add the Primary Key column PK_PersonId?