When specifying data types in mysql, what is the meaning of the numbers in brackets?
mysql
int(4) int(11) varchar(100)
If you're talking about the numbers in parentheses for this data type, you can think of it as the size. The number in parentheses of type int is the length that is filled with zero when using zerofill.
© 2024 OneMinuteCode. All rights reserved.