TRUNCATE

Diese Seite dokumentiert die Funktion TRUNCATE. Siehe TRUNCATE TABLE für die DDL-Anweisung.

Syntax

TRUNCATE(X,D)

Beschreibung

Gibt die Zahl X zurück, abgeschnitten auf D Nachkommastellen. Wenn D gleich 0 ist, hat das Ergebnis keinen Dezimal- oder Nachkommateil. D kann negativ sein, damit D Stellen links vom Dezimalpunkt des Wertes X zu Null werden.

Beispiele

SELECT TRUNCATE(1.223,1);
+-------------------+
| TRUNCATE(1.223,1) |
+-------------------+
|               1.2 |
+-------------------+

SELECT TRUNCATE(1.999,1);
+-------------------+
| TRUNCATE(1.999,1) |
+-------------------+
|               1.9 |
+-------------------+

SELECT TRUNCATE(1.999,0); 
+-------------------+
| TRUNCATE(1.999,0) |
+-------------------+
|                 1 |
+-------------------+

SELECT TRUNCATE(-1.999,1);
+--------------------+
| TRUNCATE(-1.999,1) |
+--------------------+
|               -1.9 |
+--------------------+

SELECT TRUNCATE(122,-2);
+------------------+
| TRUNCATE(122,-2) |
+------------------+
|              100 |
+------------------+

SELECT TRUNCATE(10.28*100,0);
+-----------------------+
| TRUNCATE(10.28*100,0) |
+-----------------------+
|                  1028 |
+-----------------------+

Siehe auch

Comments

Comments loading...
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.