Mysql – Best practice for data type in stored procedure parameters: INT vs INTEGER?
I am in the process of creating stored procedures, and I've noticed that in the existing ones, parameters are declared using the 'identifier' type, which seems to be an outdated practice. I am updating them to use INTEGER type parameters.…