I have many lookup tables that look like:
id(pk) type(unique)
---
1 UNIVERSITY OF ARIZONA
2 UNIVERSITY OF MIAMI
3 TOKYO UNIVERSITY
Let's say type
is a unique string in all cases.
I am questioning whether I should use the id(pk)
or just do:
type(pk)
----
UNIVERSITY OF ARIZONA
...