Arredondar registros com números no MySQL
Para arredondar um número, use MySQL ROUND(). Vamos primeiro criar uma tabela:
mysql> create table DemoTable
-> (
-> Amount DECIMAL(10,4)
-> );
Query OK, 0 rows affected (1.18 sec)
Insira alguns registros na tabela usando o comando insert:
mysql> insert into DemoTable values(100.578);
Query OK, 1 row affected (0.13 sec)
mysql> insert into DemoTable values(1000.458);
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable values(980.89);
Query OK, 1 row affected (0.13 sec)
Exiba todos os registros da tabela usando a instrução select:
mysql> select * from DemoTable;
Isso produzirá a seguinte saída:
+-----------+
| Amount |
+-----------+
| 100.5780 |
| 1000.4580 |
| 980.8900 |
+-----------+
3 rows in set (0.00 sec)
Aqui está a consulta para arredondamento de números:
mysql> update DemoTable set Amount=round(Amount);
Query OK, 3 rows affected (0.12 sec)
Rows matched: 3 Changed: 3 Warnings: 0
Vamos verificar os registros da tabela mais uma vez:
mysql> select * from DemoTable;
Isso produzirá a seguinte saída:
+-----------+
| Amount |
+-----------+
| 101.0000 |
| 1000.0000 |
| 981.0000 |
+-----------+
3 rows in set (0.00 sec)