To specify a range of values in SQL, you can use the BETWEEN clause. For example, if you want to retrieve all rows from the concepts table where the concept_code falls within the range of 'F01' to 'F99', you can use the following SQL query:
SELECT * FROM conceptsWHERE concept_code BETWEEN 'F01' AND 'F99';