SQL/MySQL/Function/SIGN — различия между версиями

Материал из SQL эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 10:16, 26 мая 2010

Use SIGN function

/*
SIGN function returns the sign of the supplied value X as -1, 0, or 1, 
depending on whether the value X is negative, zero, or positive, respectively. 
*/
select SIGN(0);
select SIGN(-3);
select SIGN(3);
/*
mysql> select SIGN(0);
+---------+
| SIGN(0) |
+---------+
|       0 |
+---------+
1 row in set (0.00 sec)
mysql> select SIGN(-3);
+----------+
| SIGN(-3) |
+----------+
|       -1 |
+----------+
1 row in set (0.00 sec)
mysql> select SIGN(3);
+---------+
| SIGN(3) |
+---------+
|       1 |
+---------+
1 row in set (0.00 sec)

*/