Cassandra cqlsh not working with where clause on non-partition key
问题 My table describe is : CREATE TABLE user ( id text, CustID int static, UpdateDate date, DateOfBirth date static, Gender text static, Address text static, City text static, State text static, Zip text static, Email text static, Phone text static, OverallAssets double, PRIMARY KEY (id,UpdateDate) ); select * from user is working fine. select * from user where partition key is also working fine. But if I am putting non partition key in where clause getting below error.What can be the reason ?