There are 5 different integer columns, each hold integer values of different sizes.
Moreover, each can be signed or unsigned. If your value can’t ever be negative (for example, for an index), then you should probably make your values unsigned.
DROP TABLE `foo`.`example_03`;
CREATE TABLE IF NOT EXISTS `foo`.`example_03` (
f_01 TINYINT, [...]
If you enjoy our post, feel free to subscribes to our rss feeds


















