Enum Field type
Many databases support an enumerated field type. It would be useful to be able to assign an Enumerated value, instead of storing numbers that translate to the selections.
i.e.
CREATE TABLE Info (
Relationship ENUM('self', 'spouse', 'guardian', 'other')
);
29
votes
1 comment
-
JaredSherman
commented
This would be extremely helpful for our development efforts.