> --
> From: Entryon Corp., Chief Technical Officer - P.
> Hasenfratz[SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, February 15, 2001 12:13 PM
> To: mysql EN
> Subject: user variables length
>
> How many Bytes can I save in a user variable?
How many Bytes can I save in a user variable?
Because I have the following strategy:
I want to save all PrimaryKeys in a user variable
SELECT @a:=' ';
SELECT @a := CONCAT(@a, ', ', TPrimKey) FROM table WHERE ;
so it is very important to know how many bytes can be stored.
regards
Philipp Has