Subject | Re: Querying for words with special characters |
---|---|
Author | Adam |
Post date | 2006-03-14T01:07:24Z |
--- In firebird-support@yahoogroups.com, "ion2w" <ion2w@...> wrote:
select *
from employee
where firstname = 'Alice''s';
(That is two apostrophies not a double quote character)
Adam
>Use an extra ' as an escape character
> If the word:
>
> Alice's
>
> is stored in my database. How do I retrieve it?
>
select *
from employee
where firstname = 'Alice''s';
(That is two apostrophies not a double quote character)
Adam