freeCodeCamp/guide/english/computer-science/databases/column-databases/index.md

11 lines
640 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Column Databases
---
## Column Databases
Column oriented databases are designed to efficiently return data for a limited number of columns. It does it by storing all of the values of a column together. A column oriented database will excel at read operations on a limited number of columns, however write operation will be expensive compared to row oriented databases.
#### More Information:
<!-- Please add any articles you think might be helpful to read before writing the article -->
Please visit the <a href="https://en.wikipedia.org/wiki/Column-oriented_DBMS">Column-oriented DBMS</a> Wikipedia page for more information.