sql >> Databasteknik >  >> RDS >> Mysql

Hur formaterar jag tal så att de bara har två decimaler?

I PHP, prova number_format :

$n = 1234.5678;

// Two decimal places, using '.' for the decimal separator
// and ',' for the thousands separator.
$formatted = number_format($n, 2, '.', ',');
// 1,234.57


  1. Återgå till readline version 6.x i Homebrew för att fixa Postgresql?

  2. Finns det ett MySQL-kommando för att implementera något som släpptabeller förutom t1,b2?

  3. ERD-notationer i datamodellering

  4. Förstå dödlägen i MySQL och PostgreSQL