mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-20 03:02:02 -05:00
640 B
640 B
title
| 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 visit the Column-oriented DBMS Wikipedia page for more information.