Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 505 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 505 Bytes

Intermediate-sql package

Run an SQL query for the "Intermediate SQL Course" using sql_course package.

Install

You can install the package by running:

pip install git+https://github.com/uplimit/course-intermediate-sql.git

Then you can run a SQL query like:

from sql_course import run, check

### Question: q1_1_1
query = "SELECT * FROM courses"

run(query)
check(q1_1_1 = query)

The database and its content is locally constructed from the data contained in this package.