blob: 8b75b7dd326ed15d2bd27dbe4f6cd19df32697e1 (
plain)
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
|
{%extends "base/page.html"%}
{%block title%}Tutorials & Other Resources{%endblock%}
{%block contents%}
<h1>Tutorials & Other Resources <i class="fas fa-keyboard"></i></h1>
<table class="table table-striped">
<thead>
<tr>
<th>Website URL</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://pgpedia.info" rel="nofollow">pgPedia</a>
</td>
<td>
A detailed encyclopedia of PostgreSQL-related topics, including
howtos, feature information, and release history.
</td>
</tr>
<tr>
<td>
<a href="https://www.postgresqltutorial.com/" rel="nofollow">PostgreSQL Tutorial</a>
</td>
<td>Learn PostgreSQL and how to get started quickly through practical examples.</td>
</tr>
<tr>
<td>
<a href="https://www.tutorialspoint.com/postgresql/" rel="nofollow">Tutorials Point PostgreSQL</a>
</td>
<td>A full, free online course for walking through PostgreSQL, from the basics to advanced administration.</td>
</tr>
<tr>
<td>
<a href="https://pgexercises.com/" rel="nofollow">PG Exercises</a>
</td>
<td>Free online exercises for learning PostgreSQL in an interactive manner.</td>
</tr>
<tr>
<td>
<a href="https://zaiste.net/posts/postgresql-primer-for-busy-people/" rel="nofollow">PostgreSQL Primer for Busy People</a>
</td>
<td>A handy single-paged resource and reference guide for getting started with PostgreSQL.</td>
</tr>
<tr>
<td>
<a href="https://github.com/dhamaniasad/awesome-postgres" rel="nofollow">Awesome Postgres</a>
</td>
<td>A curated list of awesome PostgreSQL software, libraries, tools and resources.</td>
</tr>
</tbody>
</table>
{%endblock%}
|