「MySQL」FLOOR 関数で指定値の最小の整数を取得

2021年12月30日

書式
FLOOR(x)
FLOOR 関数は引数に指定した値以下の最大の整数を取得します。

使用例
SQL構文

select floor(8.3) res1, floor(-6.7) res2, floor(7) res3, floor(-12) res4;

実行結果

res1	res2	res3	res4
8	-7	7	-12

 

MySQL

Posted by arkgame