In one of our posts, in the Be Careful While Using UNSIGNED Data Type in the Routine Body one, we’ve explained how to get invalid data in routine body when using UNSIGNED data type and that in this case MySQL does not throw any exceptions.
One of the possible solutions of this problem is explicit setting of the NO_UNSIGNED_SUBTRACTION mode as it is shown in an example in the MySQL documentation.
Let’s modify a routine script:
SET SQL_MODE = 'NO_UNSIGNED_SUBTRACTION'; DROP PROCEDURE IF EXISTS tinyintunsigned_to_tinyint; DELIMITER $$ CREATE PROCEDURE tinyintunsigned_to_tinyint() BEGIN DECLARE v_TINYINT TINYINT; -- Range for v_TINYINT : -128 .. 0 .. 127 DECLARE v_TINYINTUNSIGNED TINYINT UNSIGNED; -- Range for v_TINYINTUNSIGNED : 0 .. 255 SET SQL_MODE = 'NO_UNSIGNED_SUBTRACTION'; SET v_TINYINTUNSIGNED = 250; -- =============================== SET v_TINYINT = v_TINYINTUNSIGNED; -- =============================== SELECT v_TINYINT, v_TINYINTUNSIGNED; END$$ DELIMITER ; SET SQL_MODE = 'NO_UNSIGNED_SUBTRACTION'; CALL tinyintunsigned_to_tinyint;
And try to execute it in dbForge Studio for MySQL:
As you can see from the results, in this case MySQL handles assigning number incorrectly.
Let’s modify a routine script again. But in this case we will assign to the v_TINYINT variable a value that exceeds the maximum possible value allowed for this data type:
-- =============================== -- SET v_TINYINT = v_TINYINTUNSIGNED; SET v_TINYINT = 250; -- ===============================
Here is the result of the routine execution:
As you can see, in this case the routine was also executed without any errors or warnings.
So that’s why try to use the UNSIGNED data type in routine bodies as seldom as possible.
What do you think about this? Do you use the UNSIGNED data type in your routines?
PlanetMySQL Voting: Vote UP / Vote DOWN