cql에서 필드마다의 저장 시간을 확인하고 싶다면 WRITETIME을 사용한다.



SELECT "email", WRITETIME("email"), "location", WRITETIME("location")

FROM "member"

WHERE "username" = 'samuel.kim';



 email               | writetime(email) | location | writetime(location)

---------------------+------------------+----------+---------------------

samuel.kim@google.com | 1501879907661000 |      seoul |    1502024896943000



참고

http://docs.datastax.com/en/cql/3.1/cql/cql_using/use_writetime.html

Posted by '김용환'
,