eolas/neuron/7c141533-1806-4f5c-a70e-7527be05b1c5/Relational_database_architecture.md
2025-01-24 19:36:04 +00:00

29 lines
780 B
Markdown

---
tags:
- databases
---
# Relational database architecture
Tables, fields and records are the basic building blocks of databases
![](static/FL-Databases-1.5_terminology.gif)
## 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. A single _entry_
in the table. Sometimes called **row** interchangeably.
## Field
A vertical column: stores a single particular unit of data for each record. Each
field must use the same data type. Sometimes called **field** interchangeably.
Each individual field has **properties:** such as the data type, length or the
total memory allocation.