On Nov 19, 8:56*am, zufie <john.marru...@illinois.govwrote:
Quote:
Does MS Access utilize something like a backlash (\) to make the
following SQL code work?
>
(SQL uses a backlash (\) to make the following SQL code work).
>
Here is my code:
>
INSERT INTO my_contacts
VALUES ('Funyon', 'Steve', 'st...@onionflavoredrings.com', 'M',
'1970-04-01', 'Punk', 'Grover's Mill, NJ', 'Single', 'smashing the
state', 'compatriots, guitar players');
>
I removed the unmatched single quote in the word ('Grover's -->
'Grovers) to make the code work in MS Access.
>
Thanks for your ideas!
>
John
Ok, found another solution...add a second single quote
(Grover''s)...This solution inputs the word Grover's with an
apostrophe as it should.
Here's my code:
INSERT INTO my_contacts
VALUES ('Funyon', 'Steve', 'steve@onionflavoredrings.com', 'M',
'1970-04-01', 'Punk', 'Grover''s Mill, NJ', 'Single', 'smashing the
state', 'compatriots, guitar players');
Thanks,
John