Should I implement a read database normalization (using join tables) or should I use the ENUM type for static or dynamic data?
For example:
I have a table USER with a user_status. Should I create a table a status table or I create a ENUM list with the statuses?
Thanks G
IMHO, the enum extension makes it much easier to embed semantics into a table and also improves efficiency by:
The only downsides I am aware of is
HTH
C.