リレーショナルデータベース (RDB)
データを表形式で管理し、共通のデータポイントに基づいて表同士を関連付けるデータベースの形式。
構造化されたデータを扱う際のデファクトスタンダードであり、金融システムなどの高い信頼性が求められる場面で広く利用されています。
graph LR
Center["リレーショナルデータベース (RDB)"]:::main
Rel_encryption_at_rest["encryption-at-rest"]:::related -.-> Center
click Rel_encryption_at_rest "/terms/encryption-at-rest"
Rel_hash_table["hash-table"]:::related -.-> Center
click Rel_hash_table "/terms/hash-table"
Rel_index_database["index-database"]:::related -.-> Center
click Rel_index_database "/terms/index-database"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧒 5歳でもわかるように説明
お互いにリンクされた「表」の集まりのようなものです。例えば「顧客リスト」の表と「注文リスト」の表が、顧客IDでつながっている状態です。
🤓 Expert Deep Dive
E.F.コッドが提唱したリレーショナルモデルに基づきます。SQLを用いて操作し、ACID特性(原子性、一貫性、独立性、永続性)を備えていることが特徴です。データの正規化によって整合性を保ちます。
❓ よくある質問
What is the difference between RDBMS and NoSQL?
RDBMS uses a strict table-based schema and SQL, while NoSQL is more flexible and can use documents, graphs, or key-values.
Why is SQL used in relational databases?
SQL is a standardized, powerful language designed specifically for managing and querying structured data.