ABS
CEIL
FLOOR
切り上げた整数を返します。
CEIL(x)
下記の値を入力するとサンプルに即時反映されます。
total_amount
rounded_up
orders
SELECT CEIL(total_amount / 10.0) * 10 AS rounded_up FROM orders;