A table is defined by the following statement:
CREATE TABLE Impression (
banner_id INTEGER,
background_color VARCHAR(6),
banner_width REAL,
banner_height REAL,
cost_per_click DECIMAL(3,3),
is_click BOOLEAN
);Choose the correct query for getting data from this table.