-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdatabases.html
More file actions
38 lines (36 loc) · 1.87 KB
/
databases.html
File metadata and controls
38 lines (36 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<title>Databases</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="stylesheet.css" rel="stylesheet">
</head>
<body>
<ul id="nav">
<li><a href="index.html">Index</a></li>
<li><a href="GPS Navigation.html">GPS Navigation</a></li>
<li><a href="databases.html">Databases</a></li>
</ul>
<h1>Databases</h1>
<h3>What is a database?</h3>
<h5>A database is a collection of data organised in a way that makes it easy for a computer program to search and store information.<h6>
<img src="img/database1.png" width="20%">
<h3>Why use databases?</h3>
<ul>
<li>Store large amounts of data while using little space.</li>
<li>Easy to add, remove, and search for information.</li>
<li>High security features like <a href="https://cloud.google.com/learn/what-is-a-relational-database" target="_blank">relational database</a> prevent from inconsistent data as data in multiple tables is related and must be handled properly.</li>
<li>Easy to integrate into other programs and use the data for purposes like data analysis.</li>
</ul>
<img src="img/database2.png" width="20%">
<h3>Where are they used?</h3>
<ul>
<li>Government - store people's income tax payments, criminal records, education for identification purposes. </li>
<li>Schools - store details about studens like what days they have been absent, which subjects they are studying, their grades.</li>
<li>Hospitals - store details about patients like history of their health issues.</li>
<li>Online shops - store details about user's accounts like emails, passwords, products they buy.</li>
</ul>
<img src="img/database3.png" width="20%">
<p>Authored by Daniil <a href="https://github.com/DaniilSyzenko" target="_blank">GitHub account</a> </p>
</body>
</html>