Screen Link:
My Code:
%%sql
SELECT *
FROM facts
LIMIT 5;
What I expected to happen:
Get the first 5 rows from the DB.
What actually happened:
* 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)
I have installed the python-sql package. I have read the other discussion topics on this issue. I am not sure why I am not able to access the DB.