Does limiting the size of rows benefit MySQL table size?
问题 I know that limiting the row size will keep the size at a set maximum, however, if i limit all my rows to the maximum that they will ever need, does that increase performance on the rows (i.e. take up less space) Or does mysql dynamically allocate the size necessary for rows and maximum row length has no affect on it? 回答1: MySQL will not dynamically size fields; the potential required size is determined by the data type you choose. However, you can choose appropriate data types to help