Pesquisa de site

Como arredondar uma coluna MySQL com valores flutuantes e exibir o resultado em uma nova coluna?


Vamos primeiro criar uma tabela:

mysql> create table DemoTable
(
   Value float
);
Query OK, 0 rows affected (0.95 sec)

Insira alguns registros na tabela usando o comando insert:

mysql> insert into DemoTable values(12.4567);
Query OK, 1 row affected (0.12 sec)
mysql> insert into DemoTable values(124.7884);
Query OK, 1 row affected (0.16 sec)
mysql> insert into DemoTable values(45.64643);
Query OK, 1 row affected (0.46 sec)

Exiba todos os registros da tabela usando a instrução select:

mysql> select *from DemoTable;

Isso produzirá a seguinte saída:

+---------+
| Value   |
+---------+
| 12.4567 |
| 124.788 |
| 45.6464 |
+---------+
3 rows in set (0.00 sec)

A seguir está a consulta para arredondar registros flutuantes e exibir o resultado em uma nova coluna:

mysql> select Value,ROUND(Value,2) AS RoundValue from DemoTable;

Isso produzirá a seguinte saída:

+---------+------------+
| Value   | RoundValue |
+---------+------------+
| 12.4567 | 12.46      |
| 124.788 | 124.79     |
| 45.6464 | 45.65      |
+---------+------------+
3 rows in set (0.00 sec)

Artigos relacionados: