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?
How about:
insert into my_table values('hi, my name' + char(39) + 's tim.')