I have a user table structured like this:
- id MEDIUMINT(7),
- username VARCHAR(15)
Would it technically be faster if I changed it to this instead:
- id MEDIUMINT(5),
- username VARCHAR(15)
I'm confused because even though the total row length in terms of characters and digits would be shorter, I assume the number of bytes used would be the same.