2022-08-05 09:00:04 +01:00
|
|
|
---
|
|
|
|
tags:
|
|
|
|
- Databases
|
2022-08-05 19:00:04 +01:00
|
|
|
- relational_databases
|
2022-08-05 09:00:04 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
# Relational database architecture
|
|
|
|
Tables, fields and records are the basic building blocks of databases
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
## Table
|
|
|
|
|
|
|
|
A group of similar data with rows for **records** and columns for each **field**.
|
|
|
|
|
|
|
|
## Record
|
|
|
|
|
|
|
|
A horizontal row: a collection of items which may be of different data types all relating to the individual or object that the record describes
|
|
|
|
|
|
|
|
### Field
|
|
|
|
|
|
|
|
A vertical column: stores a single particular unit of data for each record. Each field must use the same data type.
|
|
|
|
|
|
|
|
Each individual field has **properties:** such as the data type, length or the total memory allocation.
|