I recently found that, since SQL uses single quotes (') to mark text fields, problems arise when a ' is in that field. Is there any way to save a single quote (among different characters) in a text field without confusing SQL? I'm using MS SQL Server 7.0, in case it makes a difference.
Thnx in advance!
Example of non-functional query:
INSERT INTO Company(com_name)
VALUES ('Danny's Pizza')
Thnx in advance!
Example of non-functional query:
INSERT INTO Company(com_name)
VALUES ('Danny's Pizza')