我有一些文字,我想将它添加到mysql表中。问题是文本包含逗号,当我尝试执行INSERT
时,它会检测到更多参数。
我们来看一个例子。
INSERT INTO 'video' (tittle_id, text, level) VALUES (20140531190530, Hi, this is the video text, I hope you like it, 90)
如您所见,它会将Hi
,this is the video text
和I hope you like it
视为三个不同的参数。
有没有办法解决它?
提前致谢:)
答案 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)