If I had a table called "Newspapers" with the following data:
PK Newspaper_title
Publication
Country
I would assign Newspaper_title as the Primary Key, since it is unique. However, looking at some northwind examples, I noticed that the table would look more like this:
PK Newspaper_ID
Newspaper_title
Publication
Country
is there a reason why ID fields should be numerical (i.e faster indexing)? or is it just good practice?
i look forward to an answer so I can get on with my design

cheers
PK Newspaper_title
Publication
Country
I would assign Newspaper_title as the Primary Key, since it is unique. However, looking at some northwind examples, I noticed that the table would look more like this:
PK Newspaper_ID
Newspaper_title
Publication
Country
is there a reason why ID fields should be numerical (i.e faster indexing)? or is it just good practice?
i look forward to an answer so I can get on with my design

cheers