And how it helps in data compression
The compression part works so well because very often data in the same column doesn't vary much. Imagine for example (simplification) a column that stores values from a multiple (4) choice input. There are going to be just 4 unique values in the column store, even if there are 8 million records in the table. That makes the column values easier to compress. That in turn makes it easier to fit the index into memory and thus faster to query.
When data is stored in column-wise fashion, the data can often be
compressed more effectively than when stored in row-wise fashion.
Typically there is more redundancy within a column than within a row,
which usually means the data can be compressed to a greater degree.
When data is more compressed, less IO is required to fetch the data
into memory. In addition, a larger fraction of the data can reside in
a given size of memory. Reducing IO can significantly speed up query
response time. Retaining more of your working set of data in memory
will speed up response time for subsequent queries that access the
same data.
Source: More details on columnstore technology