插入带分号的字符串值会导致错误

时间:2011-05-31 07:33:46

标签: sql syntax syntax-error

如何在字符串中转义分号以插入SQL数据库表?

示例:

Insert Into items(Description)
Values('Anti Surge T; LBC Slow Blow 6.3 x 32mm 7A / 250V');

1 个答案:

答案 0 :(得分:3)

字符串中的分号不应该导致任何问题,仍然在insert语句中用单引号将字符串括起来。