how to acept apostrophe on sql insert

0
Hello  how do i make an INSERT on SQL accept a string with an apostrophe like this jose´s. best regards.  
asked
1 answers
2

You can something like this:

INSERT into Table value (‘Jose’’s’)

You need to escape the apostrophe with another one.

answered