Predict the output of the following query :
SELECT MOD(9, 0);
NULL
Reason — The MOD() function returns NULL when the divisor is zero because division by zero is undefined in SQL.
MOD()