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?
This should work: use a back slash and put a double quote
"UPDATE my_table SET row =\"hi, my name's tim.\";