Quote:
Originally posted by dog
thanks for your reply.....
i'm fairly new to SQL and wasn't aware you could use the || ..... are these used the same as commas? anyway, i get an error when i use them so maybe its not what you meant :-)
my second problem is that the SQL example you gave searches only on one parameter. how would i do something similar but with 2 parameters?
thanks again for your help.
|
Just a warning when concatenating strings. I got this from the Oracle documentation...
<<<ORACLE DOCUMENTATION>>>
Although Oracle treats zero-length character strings as nulls, concatenating a zero-length character string with another operand always results in the other operand, so null can result only from the concatenation of two null strings. However, this may not continue to be true in future versions of Oracle. To concatenate an expression that might be null, use the NVL function to explicitly convert the expression to a zero-length string
<<<END DOCUMENTATION>>>