TIPS AND TRICKS>>MySQL(Use smallest datatype)>>
When creating a new column in your database table, use the smallest datatype that will hold the information you expect to store. Most of the time, using INT is overkill as MEDIUMINT, SMALLINT, or TINYINT have enough range. Using a smaller datatype saves space and speeds things up.
|