I am very new to the cassandra, Is there any command to get only the value from column family in cassandra?
if I use the below command:
[default@CustomKeySpace] get user['peter'];
=> (column=friday, value=10, timestamp=1362290522592000)
I get:
Returned 1 results.
Elapsed time: 8.4 msec(s).
In the above result can I grab only the value section?
If I give a command something like get user['peter'][xxx]
, I should get output value 10.
Thanks in advance.