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长度(字符数)。长度应该是一个数值。然后你可以摆脱错误。
INT 类型有 4 个字节的存储容量,因此您只能给出 11 的最大长度。
检查此以获取更多详细信息
您正在尝试创建一个可以存储整数长度的主键40。
40
请参阅此表:
类型 | 使用 | 尺寸
因此,PhpMyAdmin 不会创建该字段,因为它超过了该类型 (INT) 的最大允许长度。
http://help.scibit.com/mascon/masconMySQL_Field_Types.html