We have an ERP system which feeds into a SQL server database. We have a new product with a new data category and I need to create a field in our ERP system to accommodate a range of numbers. Color Temperature is the example I am using here:
The range would be 3000k-6500k
My team wants to put these numbers in one field because they don't want to enter data into two fields. I feel like we should have 2 fields min and max. What would be the best practice here from a database perspective? Populating the data into one field or splitting up the range into 2 fields?
Thanks!