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?
- id
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- 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.