Question 42: Suppose you have following table definition

CREATE TABLE HADOOPEXAM (

id uuid,

t_id timeuuid,

name text,

description text,

price int

primary key (id, t_id);

 

What is the Cluster key over here?

  1. id
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering Python Certification Material

Correct Answer: 3

Explanation: Here (id,t_id) is a composite key and id is a primary key and t_id is a cluster key

You can access to full explanation to question and answer from this page.