Question 43: Suppose you have following table definition
CREATE TABLE HADOOPEXAM (
id uuid,
t_id timeuuid,
cours_id uuid,
name text,
description text,
price int
primary key ((id,cours_id), t_id));
What is the Cluster key overhere
- 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: 2
Explanation: Following are different variations of primary keys. Please note that COL1, COL2, COL3,a¦ and so on represent columns in the table.
COL1: primary key has only one partition key and no cluster key.
You can access to full explanation to question and answer from this page.