Skip to content

Commit 32b9498

Browse files
committed
Update notebooks
1 parent 27e4991 commit 32b9498

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

chapters/10/index.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -559,11 +559,14 @@ <h1 id="Aggregation">Aggregation<a class="anchor-link" href="#Aggregation">&#182
559559
</div>
560560
<div class="cell border-box-sizing code_cell rendered">
561561
<div class="input">
562-
<div class="prompt input_prompt">In&nbsp;[15]:</div>
562+
<div class="prompt input_prompt">In&nbsp;[16]:</div>
563563
<div class="inner_cell">
564564
<div class="input_area">
565565
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">sql</span> <span class="o">=</span> <span class="s2">&quot;&quot;&quot;</span>
566-
<span class="s2"> SELECT f.country_code, MAX(r.temp) AS max_temp, MIN(r.temp) as min_temp</span>
566+
<span class="s2"> SELECT</span>
567+
<span class="s2"> f.country_code,</span>
568+
<span class="s2"> MAX(r.temp) AS max_temp,</span>
569+
<span class="s2"> MIN(r.temp) as min_temp</span>
567570
<span class="s2"> FROM readings AS r JOIN flights AS f</span>
568571
<span class="s2"> ON r.flight = f.name</span>
569572
<span class="s2"> GROUP BY f.country_code</span>
@@ -581,7 +584,7 @@ <h1 id="Aggregation">Aggregation<a class="anchor-link" href="#Aggregation">&#182
581584

582585
<div class="output_area">
583586

584-
<div class="prompt output_prompt">Out[15]:</div>
587+
<div class="prompt output_prompt">Out[16]:</div>
585588

586589

587590

notebooks

0 commit comments

Comments
 (0)