Widecolumn database systems
Introduction Wide column database systems store data in column families. Below is a small example of a NoSQL database: Characterstics Although, these relations look like tables, but they’re not actually tables. This is because, we cannot make arbitrary selections based on non-primary columns. For example, the following query will fail: Therefore, similar to key-value stores, we can only query by using primary keys. A primary key in a wide column database consists of one or more partition keys and zero or more clustering keys (or sorting keys). ...