I created a simple lookup table with these columns:
iid = auto-inc, primary key
cReference = varchar(30), reference to owner/entity
cCode = varchar(16), abbreviation used as FK in other tables
cDescription = varchar(64), description for cCode
I've got a primary index on iid (obviously), and I...