Spaces:
Runtime error
Runtime error
File size: 16,257 Bytes
aaef24a 9583f97 aaef24a 9583f97 aaef24a 806c8fe aaef24a 806c8fe aaef24a 806c8fe aaef24a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 | # /// script
# requires-python = ">=3.13"
# dependencies = [
# "marimo",
# "marimo-learn>=0.12.0",
# "polars==1.24.0",
# "sqlalchemy",
# ]
# ///
import marimo
__generated_with = "0.20.4"
app = marimo.App(width="medium")
@app.cell(hide_code=True)
def _():
import marimo as mo
import marimo_learn as mol
import sqlalchemy
db_path = mol.localize_file(
"survey.db",
"https://raw.githubusercontent.com/marimo-team/learn/main/sql/public/survey.db"
)
DATABASE_URL = f"sqlite:///{db_path}"
engine = sqlalchemy.create_engine(DATABASE_URL)
return engine, mo, mol
@app.cell(hide_code=True)
def _():
from marimo_learn import ConceptMapWidget, FlashcardWidget
return ConceptMapWidget, FlashcardWidget
@app.cell(hide_code=True)
def _():
mo.md(r"""
# Primary and Foreign Keys
The previous tutorial explained how to combine information from two tables using `inner join` and `left join`. This tutorial will explain how we can tell when it makes sense to do this, and introduce our first complex database. To start, let's look at a diagram showing the four tables in the `survey` database.

""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
Let's start with `person`, which has four columns: `persond_id`, `personal`, `family`, and `supervisor_id` (which we will discuss in the next section). `person_id` is shown in __*bold italics*__ to indicate that it is the table's **primary key**: each row in the table has a non-`null` `person_id`, and each of those values is unique. These values can therefore be used to uniquely identify specific rows in the table. We can check that by selecting all of the people and inspecting the `person_id` values by eye:
""")
return
@app.cell
def _(person):
_df = mo.sql(
f"""
select person_id from person;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
A better way is to count the number of rows in the table, the number of non-`null` `person_id` values, and the number of distinct person ID values. Remember, `count(*)` counts rows, while `count(column_name)` counts the number of non-`null` values in that particular column. We haven't seen `count(distinct column_name)` before, but as you might guess, it counts the number of distinct values in a particular column.
""")
return
@app.cell
def _(person):
_df = mo.sql(
f"""
select
count(*) as num_rows,
count(person_id) as num_non_null,
count(distinct person_id) as num_distinct
from person;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
Now let's take a look at the `survey` table. Each survey has a survey ID, the ID of the person who did the survey, and the survey's start and end dates. `survey_id` is in __*bold italics*__, which tells us that each survey has a unique ID. `person_id`, on the other hand, is just in *italics*, and there's an arrow connecting it to the `person` table's primary key, which is also called `person_id`. The use of italics and the arrow signals that `survey.person_id` is a **foreign key**, i.e., a value stored in one table that references the primary key of another table. This relationship tells us that:
1. It makes sense to use `survey.person_id = person.person_id` as a condition in a join because every `survey.person_id` is guaranteed to refer to an existing `person.person_id`.
2. Several surveys might refer to the same person (or equivalently, one person might have done several surveys). This is called a **one-to-many relationship**.
Let's write some queries. Who is in the `person` table?
""")
return
@app.cell
def _(person):
_df = mo.sql(
f"""
select * from person;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
How many surveys has Ascensión Sierra done? Her `person_id` is `P001`, so we can answer the question by filtering the `survey` table and then aggregating.
""")
return
@app.cell
def _(survey):
_df = mo.sql(
f"""
select count(*) as num_surveys from survey
where person_id = 'P001';
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
What if we want Ascensión's name displayed along with this count? To get that, we need to join the tables.
""")
return
@app.cell
def _(person, survey):
_df = mo.sql(
f"""
select person.personal, person.family, count(*)
from person join survey
on person.person_id = survey.person_id
where person.person_id = 'P001';
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
What if we want to get Ascensión's full name in a single column? We can do that by concatenating her personal and family name using the `||` operator (which is sometimes called "glue"). As the output of the query below shows, `||` does for text what `+` does for numbers.
""")
return
@app.cell
def _(person, survey):
_df = mo.sql(
f"""
select person.personal || person.family as full_name, count(*)
from person join survey
on person.person_id = survey.person_id
where person.person_id = 'P001';
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
Whoops: we probably want a space between Ascensión's personal and family names, so we will glue her personal name to a space and then glue that to her family name (just as we would write 1 + 2 + 3).
""")
return
@app.cell
def _(person, survey):
_df = mo.sql(
f"""
select person.personal || ' ' || person.family as full_name, count(*)
from person join survey
on person.person_id = survey.person_id
where person.person_id = 'P001';
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
Now, what if we want the number of surveys done by each person ordered by family and personal name?
""")
return
@app.cell
def _(person, survey):
_df = mo.sql(
f"""
select person.personal || ' ' || person.family as full_name, count(*)
from person join survey
on person.person_id = survey.person_id
group by person.person_id
order by person.family, person.personal;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
Notice that "Águila" (with an acute accent) comes after "Sierra". Correcting this mistake is out of the scope of this tutorial, but can be done by installing the [International Components for Unicode](https://icu.unicode.org/) and writing the query like this:
```sql
select * from person order by family, personal collate 'es_ES';
```
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> When did the earliest survey done by each person start?
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Which people have done 17 or more surveys?
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Just as `sum` adds up all the values in a column, `group_concat` concatenates all the text in a column. For example, if the column is called `name`, then `select group_concat(name, ':')` joins all the values in `name` with colons. Use this to write a query that generates two columns: a person's full name, and a comma-separated list of the IDs of the survey that person has done.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Explain what the following query produces and why.
>
> ```sql
> select person.personal || ' ' || person.family
> from person left join survey
> on person.person_id = survey.person_id
> where survey.survey_id is null;
> ```
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
## Self-Joins
As a reminder, here's the structure of the survey database.
""")
return
@app.cell
def _():
mo.image(src="https://raw.githubusercontent.com/marimo-team/learn/main/sql/public/survey_tables.svg", alt="table diagram of survey database")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
Notice that the `person` table has a foreign key called `supervisor_id` that refers back to the table's own primary key, `person_id`. This relationship makes sense: supervisors are people, so they're stored in the same table as everyone else. However, if we want to generate a list of people's names and their supervisors' names, we _can't_ just join `person` to `person`.
""")
return
@app.cell
def _(person):
_df = mo.sql(
f"""
select *
from person inner join person
on person.person_id = person.supervisor_id;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
The problem is that `person.person_id` and `person.supervisor_id` are ambiguous: are we referring to the left-hand use of the `person` table or the right-hand use? To resolve this, we give each copy of the table an **alias** using `as`, just as we gave columns names using `as`. We also have to specify the columns that we want using two-part `table.column` notation.
""")
return
@app.cell
def _(person):
_df = mo.sql(
f"""
select
pa.personal as pa_personal,
pa.family as pa_family,
pb.personal as pb_personal,
pb.family as pb_family
from person pa join person pb
on pa.person_id = pb.supervisor_id;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
Joining a table to itself is called a **self join**. The hard part is figuring out whether `pa` is the minion and `pb` is the supervisor or vice versa. The logic is that the supervisor of person `pb` is person `pa`, which means `pa` is the supervisor and `pb` is the minion. (Alternatively, we can inspect the first couple of rows, check back against the `person` table, and decide that way.) Let's rewrite the query to show the relationship explicitly.
""")
return
@app.cell
def _(person):
_df = mo.sql(
f"""
select
pa.personal || ' ' || pa.family as supervisor,
pb.personal || ' ' || pb.family as minion
from person pa join person pb
on pa.person_id = pb.supervisor_id
order by pa.family, pa.personal;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Write a query that finds the full names of everyone who doesn't have a supervisor. (Hint: you do not need to use a `join`.)
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Write a query to find all the people who supervise someone who supervises someone. (Hint: you will need to join three copies of `person` to get the person, their boss, and their grand-boss.)
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
## Many-to-Many Relationships
Each survey is done by one person, which means that people have a one-to-many relationship with surveys. However, any number of people can have ratings for any number of machines and vice versa, which means these two tables have a **many-to-many relationship**. These relationships can be hard to express in a table: if, for example, we knew that people never have ratings for more than three machines, we could add `machine_1`, `machine_2`, and `machine_3` columns to `person`, but (a) we would have to check several columns if we wanted to find a particular machine, and (b) we would have to redesign our table if the rules changed and people could have ratings for four or five machines.
A better approach is to create another intermediate table that stores the relationship between the two tables we're interested in. Such a table is sometimes called a **join table** because its main purpose is to allow us to join two other tables. The `rating` table in our database is an example of a join table. Each row stores a foreign key into `person` and a foreign key into `machine`, which shows that the person has some relationship to the machine. The table also stores `level`, which is the actual rating (or `null`), but it is quite common for join tables to only store pairs of foreign keys.
So, which people have ratings for which machines?
""")
return
@app.cell
def _(machine, person, rating):
_df = mo.sql(
f"""
select
person.personal, person.family, machine.machine_type, rating.level
from
person join rating join machine
on
person.person_id = rating.person_id
and
rating.machine_id = machine.machine_id
where
rating.level is not null
order by
person.family, person.personal, machine.machine_type
;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Which people have a level of 3 or more on at least one machine?
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Write a query that generates a comma-separated list of the machines that Asensio Amaya is rated on, even if the level is `null`. (Hint: use `group_concat`.)
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Many of the `level` values in `rating` are `null`. What do you think this might mean?
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
## Check Understanding

""")
return
@app.cell(hide_code=True)
def _(FlashcardWidget, mo):
_widget = mo.ui.anywidget(
FlashcardWidget(
question="Database Key and Relationship Concepts",
cards=[
{"front": "Primary key", "back": "A column (or set of columns) whose values are unique and non-null for every row, used to uniquely identify each row in a table"},
{"front": "Foreign key", "back": "A column in one table whose values reference the primary key of another table, establishing a link between the two tables"},
{"front": "One-to-many relationship", "back": "A relationship where one row in table A can be referenced by many rows in table B — e.g., one person can have many surveys"},
{"front": "Many-to-many relationship", "back": "A relationship where rows in table A can relate to many rows in table B and vice versa — requires a join table to represent"},
{"front": "Join table", "back": "An intermediate table storing pairs of foreign keys to represent a many-to-many relationship between two other tables"},
{"front": "Self-join", "back": "Joining a table to itself using two aliases, used when rows in a table relate to other rows in the same table (e.g., supervisors and employees)"},
],
)
)
_widget
return
@app.cell(hide_code=True)
def _(ConceptMapWidget, mo):
_widget = mo.ui.anywidget(
ConceptMapWidget(
question="Connect these database design concepts by selecting a relationship term and clicking two concepts.",
concepts=["primary key", "foreign key", "one-to-many", "many-to-many", "join table"],
terms=["referenced by", "implemented with", "requires"],
correct_edges=[
{"from": "primary key", "to": "foreign key", "label": "referenced by"},
{"from": "many-to-many", "to": "join table", "label": "implemented with"},
{"from": "one-to-many", "to": "foreign key", "label": "requires"},
],
)
)
_widget
return
if __name__ == "__main__":
app.run()
|