0

我试图创建一个表并在此处插入此值:

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

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

使用 Microsoft SQL Server 管理 2014

4

2 回答 2

1

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

('Where I''m Calling From: Selected Stories', 'Raymond', 'Carver', 1989, 12, 526)
于 2019-02-26T20:27:26.473 回答
0

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

insert into .... values 
 ('Where I''m Calling From: Selected Stories', 'Raymond', 'Carver', 1989, 12, 526)
于 2019-02-26T20:27:28.040 回答