I\'m trying to insert some text data into a table in SQL Server 9.
insert
SQL Server
The text includes a single quote(\').
How do I escape that?
Double quotes option helped me
SET QUOTED_IDENTIFIER OFF; insert into my_table values("hi, my name's tim."); SET QUOTED_IDENTIFIER ON;