Base de dados relacional
Tipo de base de dados que organiza dados em tabelas ligadas por pontos comuns.
As bases de dados relacionais são fundamentais para sistemas financeiros e de gestão devido à sua robustez e integridade.
graph LR
Center["Base de dados relacional"]:::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;
🧒 Explique como se eu tivesse 5 anos
É como um grupo de tabelas Excel ligadas por IDs. Uma tabela de clientes liga-se a uma de faturas através de um código único.
🤓 Expert Deep Dive
Usa SQL e segue os princípios ACID. É ideal para dados estruturados onde a consistência é prioritária à escalabilidade horizontal.
❓ Perguntas frequentes
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.