I tried creating table in cassandra using the following code in python
CREATE TABLE videos(
id uuid,
added_date TEXT,
title text,
PRIMARY KEY(id));
I tried to insert values using the following code
INSERT INTO videos(id,added_date,title)
VALUES(uuid(),"2014-01-29","Cassandra History");
I am getting the following error
SyntaxException: <ErrorMessage code=2000 [Syntax error in CQL query] message="line 2:45 no
viable alternative at input ',' (...,title)VALUES(uuid(),["2014-01-2]9",...)">