Dominic keeps working with the in-memory SQLite database and the cars table that stores the specifications of all the cars he has raced against in street races:
Now he wants to retrieve all Car records from the cars table with a horsepower that is between 600 and 900, ordered by their model_name in descending order and then print the records using a for...range loop.
Dominic has already created the Car model struct and written the for...range loop that prints the retrieved records. Your task is to help him write the additional required code to retrieve the records using string conditions.