i have a webbased tracking application and i am storing data in SQL server. I am tracking which locations i have deployed applications. The web interface is a dropdown combo and I have a varchar(100) field right now. I have the user select a dropdown list:
- Global
- America
- Europe
- Asia
but now i have applications that are stored in more than one region (but not necessarily global)
should i get rid of the "global" option and just have a multi-select field with America, Europe and Asia.
I am trying to think of the implications when i go query this data as i would like to slice and dice this data and run queries to get metrics per region, etc.
what is the best way for me to store this data?