I'm trying to add the following text to my database: Zeeland '96
But the single quote is giving me errors.
It should look like this:
INSERT INTO Department (Code, Name, CountryID) VALUES ('ZE', 'Zeeland '96', 1)
As you can see, at this moment is one quote missing, how can I get rid of this problem?
Thanks in advance!