Dominic is an avid automobile fan who likes street racing. He recently started learning Go and created an in-memory SQLite database with 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 top_speed greater than 300 kilometers per hour and a torque greater or equal than 650 Newton-meter, 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.