Hello,
I need to store scientific information in a database (sql server). What is the best way to store a value in a database where "smaller than", larger than" is part of the information.
Example:
PatientId: 123 Mutation rate: <3%
PatientId: 999 Mutation rate: 3%
PatientId: 456 Mutation rate: 10%
I need to be able to sort and filter the data. A mutation rate of <3% is better than 3%
How can I sove this?
Thank you for your help