- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
102 lines (81 loc) · 5.2 KB
/
Copy pathindex.html
File metadata and controls
102 lines (81 loc) · 5.2 KB
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
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="utf-8">
<metaname="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<linkhref="https://www.owencampbell.me.uk/images/favicon/favicon.ico" rel="icon">
<title>SQL for Python Programmers</title>
<linkrel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<linkhref="https://www.owencampbell.me.uk/theme/css/font-awesome.min.css" rel="stylesheet">
<linkrel="stylesheet" href="/sql_python_tutorial/static/styles.css">
</head>
<body>
<divclass="fixed-top">
<navclass="navbar navbar-expand-md navbar-dark bg-dark">
<aclass="navbar-brand" href="#">SQL for Python Programmers</a>
<buttonclass="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
<spanclass="navbar-toggler-icon"></span>
</button>
<divclass="collapse navbar-collapse" id="navbarContent">
<divclass="navbar-nav">
<aclass="nav-item nav-link" href="/sql_python_tutorial/"><iclass="fa fa-home fa-fw" aria-hidden="true" title="home"></i> Home</a>
<aclass="nav-item nav-link mr-auto" href="/sql_python_tutorial/chapters/"><iclass="fa fa-book fa-fw" aria-hidden="true" title="contents"></i> Contents</a>
<aclass="nav-item nav-link" href="/sql_python_tutorial/pages/intro.html"><iclass="fa fa-info-circle fa-fw" aria-hidden="true" title="introduction"></i> Introduction</a>
<aclass="nav-item nav-link" href="/sql_python_tutorial/pages/howto.html"><iclass="fa fa-gears fa-fw" aria-hidden="true" title="how to"></i> How To</span></a>
<aclass="nav-item nav-link" href="/sql_python_tutorial/pages/primer.html"><iclass="fa fa-database fa-fw" aria-hidden="true" title="primer"></i> Primer</a>
</div>
<divclass="navbar-nav ml-auto">
<aclass="btn btn-link btn-lg" href="https://www.linkedin.com/in/owencampbell" title="linkedin"><iclass="fa fa-linkedin" aria-hidden="true"></i></a>
<aclass="btn btn-link btn-lg" href="http://github.com/meatballs" title="github"><iclass="fa fa-github" aria-hidden="true"></i></a>
</div>
</div>
</nav>
</div>
<mainrole="main" class="container">
<divclass="jumbotron">
<h1class="display-3">Welcome</h1>
<p>This is a tutorial for Python programmers who would like to improve their knowledge of SQL.</p>
<p>You may find it helpful to read the <ahref="/sql_python_tutorial/pages/intro.html">Introduction</a>, <ahref="/sql_python_tutorial/pages/howto">How To</a> and <ahref="/sql_python_tutorial/pages/primer">Primer</a> pages first, but you are also welcome to dive straight in:</p>
<p><aclass="btn btn-primary btn-lg" href="/sql_python_tutorial/chapters/01/" role="button">Start <iclass="fa fa-play fa-fw" aria-hidden="true"></i></a></p>
</div>
<divclass="row">
<divclass="panel col-sm">
<h4><iclass="fa fa-info-circle" aria-hidden="true"></i> Introduction</h4>
<p>Why you might want to learn SQL, the level of knowledge you will need for this tutorial and how you can help to improve it.</p>
<divclass="panel-button">
<aclass="btn btn-secondary" href="/sql_python_tutorial/pages/intro.html" role="button">View details <iclass="fa fa-angle-double-right fa-fw" aria-hidden="true"></i></a>
</div>
</div>
<divclass="panel col-sm">
<h4><iclass="fa fa-cogs" aria-hidden="true"></i> How To</h4>
<p>The tutorial includes lots of code which you may wish to run for yourself and there are several options for doing so.</p>
<divclass="panel-button">
<aclass="btn btn-secondary" href="/sql_python_tutorial/pages/howto.html" role="button">View details <iclass="fa fa-angle-double-right fa-fw" aria-hidden="true"></i></a>
</div>
</div>
<divclass="panel col-sm">
<h4><iclass="fa fa-database" aria-hidden="true"></i> Primer</h4>
<p>Background material on relational databases and SQL.</p>
<divclass="panel-button">
<aclass="btn btn-secondary" href="/sql_python_tutorial/pages/primer.html" role="button">View details <iclass="fa fa-angle-double-right fa-fw" aria-hidden="true"></i></a>
</div>
</div>
</div>
</main>
<footerclass="footer">
<divclass="container">
<spanclass="text-muted">
<pclass="small">
This tutorial was inspired by a talk given by <ahref="https://twitter.com/waveform80">Dave Jones</a> at <ahref="https://twitter.com/pythonnw">Python North West</a>.
The flights database, and much of the SQL code, is taken, with grateful thanks,
from the <ahref="https://waveform.org.uk/presentations/sql">slides</a> and
<ahref="https://github.com/waveform80/presentations">source code</a> for that talk.
<br/>
Many thanks also to <ahref="https://vknight.org/">Dr. Vincent Knight</a> of <ahref="http://www.cardiff.ac.uk">Cardiff University</a> for the use of his
<ahref="https://vknight.org/gt/">Game Theory Course Notes</a> and their <ahref="https://github.com/drvinceknight/gt">source code</a>.
</p>
</span>
</div>
</footer>
</body>
</html>