我正在尝试使用单个qoute '
插入查询。它会破坏我的查询。例如
INSERT INTO news (`Id`, `UserId`, `description`) VALUES (1,12,'Hello this descriptrion and this single qoute ' in sentance');
不插入并给出错误。所以我的问题是每当用户使用单个qoute输入描述时,例如it's very hot today
。我该如何处理'
以这种方式单引号?
你回答非常感谢
答案 0 :(得分:1)
你可以这样做:
INSERT INTO news (`Id`, `UserId`, `description`) VALUES (1,12,"Hello this descriptrion and this single qoute ' in sentance");