[FOLLOW UP QUESTION TO #9296]
Change your query to retrieve videos made in 2013 or later? How to achieve this. In SQL we shall use like select * from videos_by_tag where added_date like '2013%' but in cassandra we don't have like and we have to use the full column value like added_date > '2013-01-00 00:00:00.0000'. Since the tables have only 5 rows we can view the least value in the table and write the query however if the table has millions of rows how do we know the value to be passed on a column?