Note that `now()` returns a [timeuuid](https://docs.datastax.com/en/dse/5.1/cql/cql/cql_reference/refDataTypes.html#refDataTypes__timeuuid). If you want a more traditional date type, you'll need to convert it, e.g. `system.totimestamp(now())`
– M. JustinNov 16 '20 at 20:41
If you are doing from DevCenter. Pick keyspace **system**. Afterwards try with this line of code:
`SELECT dateof(now()) FROM system.local;`
– iMajnaJun 04 '17 at 15:21