Skip to content

Commit 95c7705

Browse files
authored
Merge pull request #404 from wrightaprilm/09-kp
adding keypoints to sql lesson
2 parents f9e438c + 60ed65d commit 95c7705

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

_episodes/09-working-with-sql.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ title: Accessing SQLite Databases Using Python and Pandas
33
teaching: 20
44
exercises: 25
55
questions:
6-
- "FIXME"
6+
- "What if my data are stored in an SQL database? Can I manage them with Python?"
7+
- "How can I write data from Python to be used with SQL?"
78
objectives:
89
- "Use the sqlite3 module to interact with a SQL database."
910
- "Access data stored in SQLite using Python."
1011
- "Describe the difference in interacting with data stored as a CSV file versus in SQLite."
1112
- "Describe the benefits of accessing data using a database compared to a CSV file."
1213
keypoints:
13-
- "FIXME"
14+
- "sqlite3 provides a SQL-like interface to read, query, and write SQL databases from Python."
15+
- "sqlite3 can be used with Pandas to read SQL data to the familiar Pandas DataFrame."
16+
- "Pandas and sqlite3 can also be used to transfer between the CSV and SQL formats."
1417
---
1518

1619
## Python and SQL

0 commit comments

Comments
 (0)