79595870

Date: 2025-04-28 06:03:14
Score: 0.5
Natty:
Report link

It’s just floating-point rounding.

-- still float, but rounded back to the right integer
SELECT ROUND(POWER(9.0,28),0) AS rounded_power;

-- exact result by doing it in DECIMAL
SELECT POWER(CAST(9 AS DECIMAL(38,0)),28) AS exact_power;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: JZ Tay