我正在尝试创建表并在此处插入此值:
("Where I'm Calling From: Selected Stories", 'Raymond', 'Carver', 1989, 12, 526),
我在使用单引号和双引号时遇到问题。我将如何修改呢?未来我应该牢记什么?
使用Microsoft SQL Server Management 2014
答案 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)