I have some text and I want to add it to a mysql table. The problem is that the text includes commas, and when I try to do an INSERT
, it detects more arguments.
Let's see an example.
INSERT INTO 'video' (tittle_id, text, level) VALUES (20140531190530, Hi, this is the video text, I hope you like it, 90)
As you can see, it detects Hi
, this is the video text
, and I hope you like it
as three different arguments.
Is there a way to solve it?
Thanks in advance :)