Subject | Re: error in stored procedure - token unkown |
---|---|
Author | Didier Gasser-Morlay |
Post date | 2003-04-08T21:41:43Z |
Ronaldo,
don't you also have a syntax error in
...
I.PRIMEIRO_NOME +' '+ || +I.SOBRENOME,
...
should not it be
I.PRIMEIRO_NOME || ' '|| I.SOBRENOME,
AFAIK, the concatenation operator is the double-pipe
HTH
Didier
don't you also have a syntax error in
...
I.PRIMEIRO_NOME +' '+ || +I.SOBRENOME,
...
should not it be
I.PRIMEIRO_NOME || ' '|| I.SOBRENOME,
AFAIK, the concatenation operator is the double-pipe
HTH
Didier