如何在mysql查询中转义逗号

时间:2014-06-04 11:33:03

标签: mysql

我有一些文字,我想将它添加到mysql表中。问题是文本包含逗号,当我尝试执行INSERT时,它会检测到更多参数。

我们来看一个例子。

INSERT INTO 'video' (tittle_id, text, level) VALUES (20140531190530, Hi, this is the video text, I hope you like it, 90)

如您所见,它会将Hithis is the video textI hope you like it视为三个不同的参数。

有没有办法解决它?

提前致谢:)

2 个答案:

答案 0 :(得分:1)

尝试使用单引号:

INSERT INTO 'video' (tittle_id, text, level) 
VALUES (20140531190530, 'Hi, this is the video text, I hope you like it', 90)

答案 1 :(得分:1)

放嗨,这是视频文字,我希望你喜欢单引号内的内容,如下:

INSERT INTO 'video' (tittle_id, text, level) 
VALUES (20140531190530, 'Hi, this is the video text, I hope you like it', 90)