This is the query I have developed using the CAST function to solve this exercise. I don't see that it is possible to use the CAST function to display the release_date using UTC formats as shown on this page.
I can see displaying the UTC timestamp format could be used programmatically but I don't see how it can be in cql. Can someone provide advice?
select cast(release_date as date) as release_date, genres from videos where genres contains 'Comedy' limit 5 allow filtering; release_date | genres --------------+----------------------------------------------------------------------------------------- 1994-03-30 | {'Comedy', 'Parody', 'Satire'} 1991-08-02 | {'Comedy', 'Comedy of manners', 'Romance Film', 'Romantic comedy'} 2004-01-01 | {'Comedy', 'Mockumentary', 'Parody', 'Sports'} 2002-11-01 | {'Action Film', 'Action/Adventure', 'Adventure Film', 'Comedy', 'Spy film', 'Thriller'} 2002-12-06 | {'Comedy', 'Crime Fiction', 'Drama'} (5 rows)