Hello,
Need to understand below
1. create table d(a int,b int,c int, primary key((a,b)));
Here Primary key = composite partition key with no clustering column.
2.create table e(a int,b int,c int, primary key(a,b));
Here Primary key = compound primary key where partition key=a and clustering key=b
Please let me know if above understanding is correct ?