[root@localhost ~]# ycqlsh -u cassandra
cassandra@ycqlsh> CREATE TABLE test.stuff(c1 INT PRIMARY KEY, c2 TIMESTAMP);
cassandra@ycqlsh> INSERT INTO test.stuff (c1, c2) VALUES (1, currenttimestamp());
cassandra@ycqlsh> SELECT c2, writetime(c2) FROM test.stuff;
c2 | writetime(c2)
---------------------------------+------------------
2022-10-03 19:45:17.175000+0000 | 1664826317176027
(1 rows)