I am migrating an old database (oracle) and there are few tables like CountryCode
, DeptCode
and RoleCodes
, their primary key is string (Codes
) and i am thinking about adding Number column as a primary key because it would work fast with joins
. These tables are not really big.
I am wondering if primary key for those tables should start from number '1' or it can be started from 100 just to differentiate b/w tables PK although i don't think i would be showing them on reports.