我正在使用mysql并且列名长度为70
所以,我收到错误,指出列名太长了。
现在,我只想知道mysql中列名的最大长度是多少?
答案 0 :(得分:30)
下表描述了每种标识符的最大长度。
Identifier Maximum Length (characters)
Database 64
Table 64
Column 64
Index 64
Constraint 64
Stored Procedure or Function 64
Trigger 64
View 64
Alias 256
Compound Statement Label 16
答案 1 :(得分:20)
类似问题已经回答Here
无论如何,
根据文档Mysql Documentation
答案 2 :(得分:3)
根据this,最大长度为64
答案 3 :(得分:2)
MySQL 5.0中的64个字符
答案 4 :(得分:1)
当前版本最多64个字符 - http://dev.mysql.com/doc/refman/5.0/en/identifiers.html
答案 5 :(得分:1)
根据documentation,列名的最大长度为:64个字符。
答案 6 :(得分:1)
在MySQL 5.0中为64,您可以查看有关here
的文档