This is a read-only copy of the MariaDB Knowledgebase generated on 2024-11-14. For the latest, interactive version please visit https://mariadb.com/kb/.

LEAST

Sintassi

LEAST(valore1,valore2,...)

Spiegazione

Con due o più argomenti, restituisce l'argomento minimo. Gli argomenti sono comparati utilizzando le seguenti regole:

  • Se il valore restituito è usato in un contesto INTEGER o tutti gli argomenti sono interi, vengono comparati come interi.
  • Se l'argomento restituito è utilizzato in un contesto REAL o tutti gli argomenti sono di tipo REAL, vengono comparati come REAL.
  • Se almeno un argomento è una stringa case-sensitive, gli argomenti sono comparati come stringhe case-sensitive.
  • In tutti gli altri casi, gli argomenti sono comparati come stringhe case-insensitive.

LEAST() restituisce NULL se tutti gli argomenti sono NULL.

Esempi

MariaDB [(none)]> SELECT LEAST(2,0);
+------------+
| LEAST(2,0) |
+------------+
|          0 |
+------------+
1 row in set (0.00 sec)

MariaDB [(none)]> SELECT LEAST(34.0,3.0,5.0,767.0);
+---------------------------+
| LEAST(34.0,3.0,5.0,767.0) |
+---------------------------+
|                       3.0 |
+---------------------------+
1 row in set (0.00 sec)

MariaDB [(none)]> SELECT LEAST('B','A','C');
+--------------------+
| LEAST('B','A','C') |
+--------------------+
| A                  |
+--------------------+
1 row in set (0.00 sec)

MariaDB [(none)]> 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.