Skip to content

Commit 13ea431

Browse files
committed
Regenerating
1 parent b00ac86 commit 13ea431

File tree

3 files changed

+42
-12
lines changed

3 files changed

+42
-12
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ <h1 class="title">Databases and SQL</h1>
3232
<p>Three common options for storage are text files, spreadsheets, and databases. Text files are easiest to create, and work well with version control, but then we would have to build search and analysis tools ourselves. Spreadsheets are good for doing simple analyses, but they don’t handle large or complex data sets well. Databases, however, include powerful tools for search and analysis, and can handle large, complex data sets. These lessons will show how to use a database to explore the expeditions’ data.</p>
3333
<div id="prerequisites" class="prereq panel panel-warning">
3434
<div class="panel-heading">
35-
<h2 id="prerequisites" class="prereq panel panel-warning"><span class="glyphicon glyphicon-education"></span>Prerequisites</h2>
35+
<h2><span class="glyphicon glyphicon-education"></span>Prerequisites</h2>
3636
</div>
3737
<div class="panel-body">
3838
<p>If SQLite is being used from the shell, learners will need to be able to navigate directories and run simple commands from the command line. If a GUI such as the Firefox SQLite plugin is being used, learners will need to know how to install browser plugins (and have permission to do so).</p>
39-
<p>Check the <a href="discussion.html">discussion page</a> for database setup instructions</p>
39+
<p>Check <a href="discussion.html">Discussion</a> for database setup instructions</p>
4040
</div>
4141
</div>
4242
<h2 id="topics">Topics</h2>

motivation.html

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,38 @@ <h1 class="var-title"></h1>
2727
</div>
2828

2929
<!-- Begin slides. Just make elements with a class of slide. -->
30-
<section id="why-use-sql-and-databases" class="slide level2">
31-
<h1>Why use SQL and Databases?</h1>
32-
<p>Handling complex or large-volume data can outstrip the capabilities of spreadsheets or plain text files.</p>
30+
<section id="how-to-store-data" class="slide level2">
31+
<h1>How to Store Data?</h1>
32+
<p>Three common options for storage are text files, spreadsheets, and databases.</p>
33+
</section>
34+
<section id="text" class="slide level2">
35+
<h1>Text</h1>
36+
<ul>
37+
<li>Easy to create, work well with version control</li>
38+
<li>But then we have to build search and analysis tools ourselves</li>
39+
</ul>
40+
</section>
41+
<section id="spreadsheets" class="slide level2">
42+
<h1>Spreadsheets</h1>
43+
<ul>
44+
<li>Good for simple analyses</li>
45+
<li>But don’t handle large or complex data sets well</li>
46+
</ul>
47+
</section>
48+
<section id="databases" class="slide level2">
49+
<h1>Databases</h1>
50+
<blockquote>
51+
<h3>database (dā’tə-bās’) noun</h3>
52+
<p>“A collection of data arranged for ease and speed of search and retrieval by a computer” - The American Heritage® Science Dictionary</p>
53+
</blockquote>
54+
<ul>
55+
<li>Include powerful tools for search and analysis</li>
56+
<li>Can handle large, complex data sets.</li>
57+
</ul>
3358
</section>
3459
<section id="next-steps" class="slide level2">
3560
<h1>Next Steps</h1>
3661
<p><a href="01-select.html">Here we go!</a></p>
37-
<!-- A more cogent discussion would be good here -->
3862
</section>
3963
<!-- End slides. -->
4064

motivation.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,29 @@ layout: slides
33
title: Databases and SQL
44
subtitle: Motivation
55
---
6+
## How to Store Data?
67

7-
## Why use SQL and Databases?
8+
Three common options for storage are text files, spreadsheets, and databases.
89

9-
Three common options for storage are text files, spreadsheets, and databases. Text files are easiest to create, and work well with version control, but then we would have to build search and analysis tools ourselves. Spreadsheets are good for doing simple analyses, but they don’t handle large or complex data sets well. Databases, however, include powerful tools for search and analysis, and can handle large, complex data sets. These lessons will show how to use a database to explore the expeditions’ data.
10+
## Text
1011

11-
## The Problem
12+
* Easy to create, work well with version control
13+
* But then we have to build search and analysis tools ourselves
1214

13-
We want to store information in a way that will make search and analysis easy.
15+
## Spreadsheets
16+
17+
* Good for simple analyses
18+
* But don't handle large or complex data sets well
1419

1520
## Databases
1621

1722
> ### database (dā'tə-bās') noun {.callout}
1823
> "A collection of data arranged for ease and speed of search and retrieval by a computer"
1924
> - The American Heritage® Science Dictionary
2025
26+
* Include powerful tools for search and analysis
27+
* Can handle large, complex data sets.
28+
2129
## Next Steps
2230

2331
[Here we go!](01-select.html)
24-
25-
<!-- A more cogent discussion would be good here -->

0 commit comments

Comments
 (0)