我有一个带有反斜杠的字符串,需要使用以下插入 sql 查询插入 MS Sql Server 2008 数据库:
INSERT INTO Databsename.dbo.tblname
VALUES (Getdate(),
Getdate(),
'NewsHoroscopetest/voice/_06101214132pm014771957.wav',
20,
'014771045',
'01454545')
此处,由于字符串值中的反斜杠,插入失败。我也尝试过使用双反斜杠。它显示以下错误:
Msg 8152, Level 16, State 14, Line 1
String or binary data would be truncated.
The statement has been terminated.
如何在上面的 sql 中转义反斜杠?