RE: user variables length

2001-02-15 Thread Wayne Fool
> -- > 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?

user variables length

2001-02-15 Thread Entryon Corp., Chief Technical Officer - P. Hasenfratz
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