Andrey Dmitriev wrote:
Thanks, that works..
Next question Does MySql support using it's own functions within this code? E.g. I tried set str = select concat (str,'hello');
set str = concat (str, 'hello');
And it didn't seem to like either.

Eliminate the spaces between the function name and the parens and it'll be happier. There's a configuration setting that controls this if you really want to tweak it, but I always just eliminate the parens.

Baron

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to