I'm trying to run the following query:
INSERT INTO SUBJECT VALUES ('ARTS & HUMANITIES','AH');
When I try to run it it asks me to enter a value for humanities. I suppose that the '&' sign before humanities makes it think that humanities is a variable. Is there any work around for this so that you can include '&' in the SQL statement. Thanks.
INSERT INTO SUBJECT VALUES ('ARTS & HUMANITIES','AH');
When I try to run it it asks me to enter a value for humanities. I suppose that the '&' sign before humanities makes it think that humanities is a variable. Is there any work around for this so that you can include '&' in the SQL statement. Thanks.