We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ff5b48 commit 74d4925Copy full SHA for 74d4925
1 file changed
_episodes/09-working-with-sql.md
@@ -66,7 +66,7 @@ con = sqlite3.connect("data/portal_mammals.sqlite")
66
cur = con.cursor()
67
68
# Return all results of query
69
-SELECT plot_id FROM plots WHERE plot_type="Control"')
+cur.execute('SELECT plot_id FROM plots WHERE plot_type="Control"')
70
cur.fetchall()
71
72
# Return first result of query
0 commit comments