Enums (Enumerations)
#enum #enumaration #case
Overview
In strings, there are many possible options for one particular item or column. For example, you may write to the name column in different ways like:
"Monday"
"Monday "
"monday "
"February"
Thus this will give erroneous results. To prevent this, you should carefully analyze your data regularly, if not every time.
You create a list of data in a particular "enum" so that you will choose from that list to prevent entering wrong data.
Comparing
Sources
Videos
Articles / Documents
Last updated