✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which of the following queries can be executed on a Cassandra database for the given statement?
CREATE TABLE Person (id INT, firstname VARCHAR, lastname VARCHAR,birthdate DATE, interests SET<VARCHAR>, primary key (id));CREATE INDEX person_birthdate ON Person (birthdate);