Ivan has created a Go program that creates an in-memory sqlite3 database with the continents table via the hidden populateDB() function. However, he doesn't know how to retrieve data from the continents table using Go!
First, you must help Ivan use the db.Query() function to write a SELECT query to select the continent_id and name columns from the continents table.
Next, you should use a for loop with the rows.Next() function to iterate over the selected rows, then use the rows.Scan() function to read the data into the continentId and name variables, and finally print the data of each row.