I know this seems like a "Read the Manual" Question, but I've read the manual and searched with Google to no avail.
Does cassandra support selecting the nth row from a collection, ie without matching an inner key?
So if I have multiple users under an account in my app, and if I want to open a detailed view of ONE user, is there a proper way to write the following query?
SELECT userList[n] FROM Accounts WHERE Id = 123456...;
Or do I just need to bite the bullet and include a 'uid' column in my User type?
SELECT * FROM Accounts.userList WHERE Id = 123456 and userList CONTAINS { uid : n }