I have got a list of objects that can be in three states only.
Simplified example of the data:
Substance State
H2O solid
H2O fluid
CO2 gas
... ...
Is it better to use TINYINT(2)
or ENUM
or anything else? Should I insert the values right as they are (VARCHAR) or use numbers? External table of values?