Complete the code to identify the storage type that stores data by rows.
In a [1] database, data is stored row by row.A row-store database stores data row by row, meaning all columns of a row are stored together.
Complete the sentence to describe the main advantage of column-store databases.
Column-store databases are efficient for queries that access [1] of data.
Column-store databases are efficient when queries access only a few columns across many rows.
Fix the error in the statement about row-store databases.
Row-store databases store data by [1].Row-store databases store data by rows, meaning all columns of a single row are stored together.
Fill both blanks to complete the dictionary comprehension that selects columns with values greater than 10.
{col: data[col] for col in data if data[col] [1] 10 and col [2] 'id'}The comprehension selects columns where the value is greater than 10 and the column name is not 'id'.
Fill all three blanks to create a dictionary comprehension that maps uppercase column names to their values if values are less than 50.
{ [1]: [2] for [3] in data if data[[3]] < 50 }This comprehension creates a dictionary with uppercase column names as keys and their values if the values are less than 50.