I am just starting the guided project to analyze CIA Factbook in the SQL Fundamentals course.
When I ran this code:
%load_ext sql
%sql sqlite:///factbook.db```
I copied it in and ran it and nothing happens.
I am supposed to get:
'Connected: [email protected]'
I did notice that the factbook database file was created in the same folder as the Jupyter notebook.
When I run a Query:
```%%sql
SELECT *
FROM facts
LIMIT 5;```
I get the following:
* sqlite:///factbook.db
(sqlite3.OperationalError) no such table: facts
[SQL: SELECT *
FROM facts
LIMIT 5;]
(Background on this error at: http://sqlalche.me/e/e3q8)
Help.