• For any numeric operation to be successful, atleast one of the operand must be a number data type.

    e.g. select '6'+'4'*'8'/'2' will fail where as

    select '6'+4*'8'/'2' will succeed.

    Thus it is obvious that the execution expression 2 fails.