Hi
How do you insert a row into a table where one of the column has single quote ' as a part of the columns data.
For eg.
Create table a1 (a varchar(3000))
insert into a1 values ('This is Soumil's laptop')
How do we go about insert this row which obviously has a single quote which marks the end of character string?
Thanks for your help.
-Soumil