diff --git a/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/reading-data-from-databases.english.md b/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/reading-data-from-databases.english.md index bbcd25b8de..5ad34bbd61 100644 --- a/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/reading-data-from-databases.english.md +++ b/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/reading-data-from-databases.english.md @@ -14,13 +14,12 @@ videoId: MtgXS1MofRw ```yml question: - text: Question + text: What method does a Cursor instance have and what does it allow? answers: - - one - - two - - three + - The Cursor instance has a .Run() method which allows you to run SQL queries. + - The Cursor instance has a .Select() method which allows you to select records. + - The Cursor instance has a .Execute() method which will receive SQL parameters to run against the database. solution: 3 ``` -