Subject RE: [ib-support] SQL Error
Author Helen Borrie
At 07:39 AM 22-12-02 -0500, you wrote:
>Here is what I just tried. I get an error at the space after firstname.
>update MemberNames
>set username =
> SUBSTRING( firstname 1 FOR 1 ) ||
> SUBSTRING( lastname 1 FOR 7 );

Sorry, it's

SUBSTRING( firstname FROM 1 FOR 1 ) ||
SUBSTRING( lastname FROM 1 FOR 7 )

heLen