Division:
SELECT 3/5;
0.60
Division by zero produces a NULL result:
SELECT 3/5;
0.60
A division is calculated with BIGINT arithmetic only if performed in a context where its result is converted to an integer.
SELECT 102/(1-1);
NULL