Can someone explain why Mysql runs into BIGINT overflow when below sql is executed
select 100-0^222;
ERROR 1690 (22003): BIGINT UNSIGNED value is out of range in '(100 - (0 ^ 222))'
But runs fine with
select 0^222;
Can someone explain why Mysql runs into BIGINT overflow when below sql is executed
select 100-0^222;
ERROR 1690 (22003): BIGINT UNSIGNED value is out of range in '(100 - (0 ^ 222))'
But runs fine with
select 0^222;