Format(MyFeld,"00")
am 02.07.2006 12:18:56 von Reiner WagnerHallo,
in Access gibt es SELECT format(MyFeld,"00"). Dann erhalte ich 123,00 statt
123.
Gibt es sowas auch in MySQL?
Vielen Dank im voraus,
Reiner
Hallo,
in Access gibt es SELECT format(MyFeld,"00"). Dann erhalte ich 123,00 statt
123.
Gibt es sowas auch in MySQL?
Vielen Dank im voraus,
Reiner
Reiner Wagner schrieb:
> Hallo,
>
> in Access gibt es SELECT format(MyFeld,"00"). Dann erhalte ich 123,00 statt
> 123.
>
> Gibt es sowas auch in MySQL?
>
> Vielen Dank im voraus,
>
> Reiner
>
>
Der semi-automatische Handbuch-Vorlese-Dienst glaubt Du suchst nach
http://dev.mysql.com/doc/refman/5.1/en/string-functions.html
Speziell:
> FORMAT(X,D)
>
> Formats the number X to a format like '#,###,###.##', rounded to D
> decimal places, and returns the result as a string. If D is 0, the
> result has no decimal point or fractional part.
>
> mysql> SELECT FORMAT(12332.123456, 4);
> -> '12,332.1235'
> mysql> SELECT FORMAT(12332.1,4);
> -> '12,332.1000'
> mysql> SELECT FORMAT(12332.2,0);
> -> '12,332'
HTH
Norbert
Vielen Dank,
Funktioniert!