Collections:
SIGN() - Sign of a Number
How to get the sign of a given number using the SIGN() function?
✍: FYIcenter.com
SIGN(X) is a MySQL built-in function that
rounds the sign of X as -1, 0, or 1.
For example:
SELECT SIGN(-32), SIGN(0), SIGN(234); -- +-----------+---------+-----------+ -- | SIGN(-32) | SIGN(0) | SIGN(234) | -- +-----------+---------+-----------+ -- | -1 | 0 | 1 | -- +-----------+---------+-----------+
Reference information of the SIGN() function:
SIGN(X): int Returns the sign of the argument as -1, 0, or 1, depending on whether X is negative, zero, or positive. Arguments, return value and availability: X: Required. The input value. int: Return value. The integer representing the sign of X. Available since MySQL 4.0.
⇒ SIN() - Sine Trigonometric Value
⇐ ROUND() - Rounding to Decimal Place
2023-11-15, 1106🔥, 0💬
Popular Posts:
How to execute statements in loops in SQL Server Transact-SQL? How to use WHILE ... loops? You can u...
How To Convert Binary Strings into Hexadecimal Character Strings in SQL Server? When a query returns...
Is PL/SQL Language Case Sensitive in Oracle? PL/SQL language is not case sensitive: Reserved words a...
What Happens to Your Transactions When ERROR 1205 Occurred in MySQL? If your transaction receives th...
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...