SQL单引号和双引号插入值

时间:2019-02-26 20:22:45

标签: sql sql-server tsql string-constant

我正在尝试创建表并在此处插入此值:

("Where I'm Calling From: Selected Stories", 'Raymond', 'Carver', 1989, 12, 526),

我在使用单引号和双引号时遇到问题。我将如何修改呢?未来我应该牢记什么?

使用Microsoft SQL Server Management 2014

2 个答案:

答案 0 :(得分:1)

始终使用单引号,并在需要时使用双单引号。

('Where I''m Calling From: Selected Stories', 'Raymond', 'Carver', 1989, 12, 526)

答案 1 :(得分:0)

双引号不能用于插入。使用单引号。 您可以使用单引号两次转义。 ''

insert into .... values 
 ('Where I''m Calling From: Selected Stories', 'Raymond', 'Carver', 1989, 12, 526)