Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
减少列长的后果有多严重?(即varchar)
我发现这个问题增加了可能的问题......
在 MySql 中增加 varchar 长度的可能后果?
例如,如果在类型的用户名列中VARCHAR(32)有用户名,ThisIsMyStupidUsername并且您将其更改为VARCHAR(16),则该用户名将被切断并变成ThisIsMyStupidUs。
VARCHAR(32)
ThisIsMyStupidUsername
VARCHAR(16)
ThisIsMyStupidUs
只要您确保没有使用您要切断的空间的记录,并且没有必须使用它的情况,您就可以了。