Spaces:
Runtime error
Runtime error
File size: 9,422 Bytes
aaef24a 9583f97 aaef24a 9583f97 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 | # /// 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(
"penguins.db",
"https://raw.githubusercontent.com/marimo-team/learn/main/sql/public/penguins.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 MatchingWidget, MultipleChoiceWidget
return MatchingWidget, MultipleChoiceWidget
@app.cell(hide_code=True)
def _():
mo.md(r"""
# Filtering
The previous tutorial showed how to select specific columns from a database table, and how to page through the data that a query returns. However, people almost always **filter** data based on its properties rather than on its position in a table. To see how this works, let's look at the combinations of species, island, and sex in the `penguins` table.
""")
return
@app.cell
def _(penguins):
_df = mo.sql(
f"""
select distinct species, island, sex from penguins;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
## Equality
Suppose we only want to see penguins from Dream island, regardless of their species or sex. To get this, we add a `where` clause to our query.
""")
return
@app.cell
def _(penguins):
_df = mo.sql(
f"""
select distinct species, island, sex
from penguins
where island = "Dream";
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
There are several noteworthy things in this query:
1. We don't have to use `distinct`. If we leave it out, we get *all* the penguins on Dream island. (We included it to make the output easier to read without paging.)
2. The `where` clause *must* come after the `from` clause. SQL is very picky about ordering…
3. We don't put quotation marks around `island` because it's the name of a column. We *do* put quotes around `"Dream"` because it's an actual literal piece of text.
4. We use a single equals sign `=` to check for equality. This is different from most programming languages, which use `==`.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Write a query to select all the Chinstrap penguins regardless of what island they're on.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> 1. Change the column name `island` to `ISLAND` and re-run the query: what happens?
> 2. Change the text value `"Dream"` to `"DREAM"`: what happens?
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
## Comparisons
We can do all of the usual comparisons in SQL:
| name | symbol | example |
| :--- | ------ | :------ |
| less than | `<` | `body_mass_g < 3300` |
| less than or equal | `<=` | `flipper_length_mm < 200.0` |
| equal | `=` | `species = "Gentoo"` |
| not equal | `!=` or `<>` | `species != "Gentoo"` |
| greater than or equal | `>=` | `flipper_length_mm >= 200.0` |
| greater than | `>` | `body_mass_g > 3300` |
Comparing numbers is straightforward. When we compare text, the comparison uses dictionary order: A is less than B, AA is than AB, and so on.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Find all the penguins that _aren't_ on Torgersen island.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Use `where`, `order by`, and `limit` to find the heaviest penguin. Use it again to find the lightest.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> What happens if we accidentally compare a number to text? For example, what happens if we select penguins where `species` is less than 3000, or where `body_mass_g` is greater than the letter 'M'?
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
## Combining Conditions
We can combine conditions using `and` and `or`. `and` is the simpler of the two: when we write `where condition_1 and condition_2`, we get the rows where *both* conditions are true.
""")
return
@app.cell
def _(penguins):
_df = mo.sql(
f"""
select * from penguins
where species = 'Gentoo' and body_mass_g > 6000.0;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
If we use `or`, we get rows where *either or both* condition is true. This is different from common English usage: if you tell a child that they can have an ice cream cone or a chocolate bar, you mean "either/or". When you use `or` in SQL, on the other hand, it means "if any of the conditions is true". For example, the query below gets all of the penguins on Biscoe island, as well as all of the Gentoo penguins. Some penguins satisfy both conditions (the Adelie penguins on Biscoe island), some satisfy just one (the Adelies on Torgersen and the Gentoos on Biscoe). Penguins that don't satisfy either, like Chinstrap penguins on Dream island, don't show up at all.
""")
return
@app.cell
def _(penguins):
_df = mo.sql(
f"""
select distinct species, island from penguins
where species = 'Adelie' or island = 'Biscoe';
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
We have written our `where` conditions as we would say them. Many programmers would wrap each condition in parentheses to make them easier to read.
""")
return
@app.cell
def _(penguins):
_df = mo.sql(
f"""
select distinct species, island from penguins
where (species = 'Adelie') or (island = 'Biscoe');
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
The more complex our conditions are, the more important it is to use parentheses to make sure everyone reading the query (including ourselves) understands what it means. The query below shows an example.
""")
return
@app.cell
def _(penguins):
_df = mo.sql(
f"""
select distinct species, island from penguins
where ((species = 'Adelie') and (island = 'Biscoe')) or (species = 'Chinstrap');
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Explain in simple terms what the condition in the query above is selecting.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> We can put `not` in front of a condition to invert its meaning. Use this to write a query that fetches the same rows as one with the condition `species != 'Chinstrap'`, but which uses `=` instead of `!=`.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Does the expression `species not = 'Gentoo'` work?
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> 1. Write a query to find all of the penguins whose bill length is greater than their bill depth.
> 2. Write another query to find all of the penguins whose bill length is less than their bill depth. What do you notice about the output of this query?
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> The previous tutorial showed how to do calculations on the fly to (for example) produce a column called `mass_kg` showing the body mass of each penguin in kilograms. Can these on-the-fly columns be used in `where` conditions? To find out, write a query that finds all of the penguins that weight more than 4.0 kg.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
## Check Understanding

""")
return
@app.cell(hide_code=True)
def _(MatchingWidget, mo):
_widget = mo.ui.anywidget(
MatchingWidget(
question="Match each SQL comparison operator to its meaning.",
left=["<", "!=", ">=", "="],
right=["equal to", "not equal to", "less than", "greater than or equal to"],
correct_matches={0: 2, 1: 1, 2: 3, 3: 0},
)
)
_widget
return
@app.cell(hide_code=True)
def _(MultipleChoiceWidget, mo):
_widget = mo.ui.anywidget(
MultipleChoiceWidget(
question="A query uses `WHERE species = 'Adelie' OR island = 'Biscoe'`. Which rows does it return?",
options=[
"Only rows where both conditions are true (Adelie penguins on Biscoe)",
"Rows where either condition is true, or both",
"Rows where species is Adelie but island is not Biscoe",
"Rows where island is Biscoe but species is not Adelie",
],
correct_answer=1,
explanation="In SQL, OR returns every row where at least one condition is true. This includes rows satisfying just the first condition, just the second, or both simultaneously.",
)
)
_widget
return
if __name__ == "__main__":
app.run()
|