Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: pl/sql and hochkommas
> >
> > I'm not 100% sure I understand what you are asking.
> > You might want to use the CHR() function in place of single or double
> > quote marks.
> >
When I try:
select count(*) into v_vorhanden from wort_suche where wort_id = v_id_wort
and buchstabe = CHR(39) || upper(buchstabe) || CHR(39) and benutzer_id =
login.getid_benutzer;
it doesn't work but when I try:
select count(*) into v_vorhanden from wort_suche where wort_id = v_id_wort and buchstabe = 'J' and benutzer_id = login.getid_benutzer;
it does work.
I hope someone can tell me the correct syntax for it.
Thank a lot
Hubert Received on Mon Dec 08 2003 - 01:16:12 CST
![]() |
![]() |