Re: any ideas about it

2004-02-11 Thread Terry Riley
Try ABS()

Terry

--Original Message-  

> Hi all,
> 
> I m looking for any function or a work around to fetch numerical data 
> without its sign (-10 --10, 10 --> 10). Any ideas?
> 
> Thanx




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



Re: any ideas about it

2004-02-02 Thread Egor Egorov
"Nitin Mehta" <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> I m looking for any function or a work around to fetch numerical data without its 
> sign (-10 --> 10, 10 --> 10). Any ideas?

There is ABS() function in MySQL:
http://www.mysql.com/doc/en/Mathematical_functions.html



-- 
For technical support contracts, goto https://order.mysql.com/?ref=ensita
This email is sponsored by Ensita.net http://www.ensita.net/
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /Egor Egorov
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.net
   <___/   www.mysql.com




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



Re: any ideas about it

2004-02-02 Thread Chris Elsworth
On Mon, Feb 02, 2004 at 07:16:13PM +0530, Nitin Mehta wrote:
> Hi all,
> 
> I m looking for any function or a work around to fetch numerical data without its 
> sign (-10 --> 10, 10 --> 10). Any ideas?

ABS() :

mysql> select abs(-10);
+--+
| abs(-10) |
+--+
|   10 |
+--+



-- 
Chris

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