Re: Suppression of result in SELECT @temp := column?

2004-09-02 Thread Zak Greant
Hi! On Aug 25, 2004, at 8:16, <[EMAIL PROTECTED]> wrote: Is there any way to not sending the result of a user variable assignment to the client? I.e. Suppress the result of; SELECT @temp := columnID FROM table WHERE column = whatever LIMIT 0,1 ...since I only use @temp in my next statement to pro

Re: Suppression of result in SELECT @temp := column?

2004-09-02 Thread Eamon Daly
Eamon Daly - Original Message - From: "Diana Soares" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 02, 2004 9:38 AM Subject: Re: Suppression of result in SELECT @temp := column? > I didn't understand the problem very well

Re: Suppression of result in SELECT @temp := column?

2004-09-02 Thread Diana Soares
Original Message - > From: <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, August 25, 2004 9:16 AM > Subject: Suppression of result in SELECT @temp := column? > > Is there any way to not sending the result of a user variable assignment > &g

Re: Suppression of result in SELECT @temp := column?

2004-08-31 Thread Eamon Daly
t: Suppression of result in SELECT @temp := column? > Is there any way to not sending the result of a user variable assignment to > the client? > > I.e. Suppress the result of; > > SELECT @temp := columnID FROM table WHERE column = whatever LIMIT 0,1 > > ...since I only use

Suppression of result in SELECT @temp := column?

2004-08-25 Thread info
Is there any way to not sending the result of a user variable assignment to the client? I.e. Suppress the result of; SELECT @temp := columnID FROM table WHERE column = whatever LIMIT 0,1 ...since I only use @temp in my next statement to produce the actual result. Also, is there a equivalence t