在 MySQL 中舍入到最接近的整数

Preet Sanghavi 2023年1月3日
在 MySQL 中舍入到最接近的整数

在本教程中,我们旨在探索如何在 MySQL 中四舍五入到最接近的整数。

通常,在 MySQL 中更新特定数据库表中的信息时,我们需要将特定的浮点值向下舍入到最接近的整数。MySQL 借助 FLOOR() 函数帮助我们完成这项任务。

让我们尝试更多地了解这个功能。

MySQL 中的 FLOOR() 方法接受一个参数并给出一个整数值作为输出。MySQL 中这个函数的基本语法是 FLOOR(A),其中 A 代表任何整数或浮点值。

例如,如果 A 值为 4.4,则 FLOOR(4.4) 的输出将是 4。如果 A 的值是 3.9FLOOR(3.9) 的输出将是 3

因此,我们可以看到这些值被四舍五入到最接近的整数。让我们了解此方法在特定表中的工作原理。

在开始之前,让我们创建一个虚拟数据集来处理。

-- create the table student_information
CREATE TABLE student_information(
  stu_id float,
  stu_firstName varchar(255) DEFAULT NULL,
  stu_lastName varchar(255) DEFAULT NULL,
  primary key(stu_id)
);
-- insert rows to the table student_information
INSERT INTO student_information(stu_id,stu_firstName,stu_lastName) 
 VALUES(1.3,"Preet","Sanghavi"),
 (2.7,"Rich","John"),
 (3.9,"Veron","Brow"),
 (4.4,"Geo","Jos"),
 (5.3,"Hash","Shah"),
 (6.6,"Sachin","Parker"),
 (7.0,"David","Miller");
注意
stu_id 支持浮点值和整数,因为 stu_id 的数据类型定义为 float

让我们的目标是从 student_information 表中舍入 stu_id

在 MySQL 中舍入

在 MySQL 中获取特定表列的所有值的基本语法如下所示。

SELECT FLOOR(stu_id) as rounded_down_values from student_information;

由于未应用任何条件,因此上面的代码对来自 student_information 表的每个 stu_id 进行了限制。代码的输出如下。

rounded_down_values
1
2
3
4
5
6
7
注意
我们在 MySQL 的给定代码中使用别名 rounded_down_valuesAS 关键字。

因此,借助 FLOOR() 函数,我们可以有效地将非整数值向下舍入到 MySQL 中最接近的整数。

作者: Preet Sanghavi
Preet Sanghavi avatar Preet Sanghavi avatar

Preet writes his thoughts about programming in a simplified manner to help others learn better. With thorough research, his articles offer descriptive and easy to understand solutions.

LinkedIn GitHub

相关文章 - MySQL Integer