Maximum length of a table name in MySQL
http://dev.mysql.com/doc/refman/5.7/en/identifiers.html
The following table describes the maximum length for each type of identifier.
| Identifier | Maximum Length (characters) | 
|---|---|
| Database | 64 ( NDBstorage engine: 63) | 
| Table | 64 ( NDBstorage engine: 63) | 
| Column | 64 | 
| Index | 64 | 
| Constraint | 64 | 
| Stored Program | 64 | 
| View | 64 | 
| Tablespace | 64 | 
| Server | 64 | 
| Log File Group | 64 | 
| Alias | 256 (see exception following table) | 
| Compound Statement Label | 16 | 
| User-Defined Variable | 64 as of MySQL 5.7.5, no limit before that | 
Aliases for column names in CREATE VIEW statements are checked against the maximum column length of 64 characters (not the maximum alias length of 256 characters).
Identifiers are stored using Unicode (UTF-8). This applies to identifiers in table definitions that are stored in .frm files and to identifiers stored in the grant tables in the mysql database. The sizes of the identifier string columns in the grant tables are measured in characters. You can use multibyte characters without reducing the number of characters permitted for values stored in these columns. As indicated earlier, the permissible Unicode characters are those in the Basic Multilingual Plane (BMP). Supplementary characters are not permitted.
MySQL Cluster imposes a maximum length of 63 characters for names of databases and tables. See Section 19.1.6.5, “Limits Associated with Database Objects in MySQL Cluster”.
Maximum length of a table name in MySQL的更多相关文章
- oracle 导入报错:field in data file exceeds maximum length
		今天用sqlldr导入数据时候报错: " Record 1: Rejected - Error on table ks_test, column khname.Field in data f ... 
- sqlldr Field in data file exceeds maximum length "
		使用sqlldr导数时出现如下错误: " Record 1: Rejected - Error on table PC_PLANNAME, column PLANNAME.Field in ... 
- [LeetCode] Maximum Length of Repeated Subarray 最长的重复子数组
		Given two integer arrays A and B, return the maximum length of an subarray that appears in both arra ... 
- [Swift]LeetCode718. 最长重复子数组 | Maximum Length of Repeated Subarray
		Given two integer arrays A and B, return the maximum length of an subarray that appears in both arra ... 
- MySQL Bugs: #34354: Feature request: EXPLAIN ALTER TABLE https://bugs.mysql.com/bug.php?id=34354
		MySQL Bugs: #34354: Feature request: EXPLAIN ALTER TABLE https://bugs.mysql.com/bug.php?id=34354 [SQ ... 
- [LeetCode]Maximum Length of Repeated Subarray
		Maximum Length of Repeated Subarray: Given two integer arrays A and B, return the maximum length of ... 
- LeetCode Maximum Length of Pair Chain
		原题链接在这里:https://leetcode.com/problems/maximum-length-of-pair-chain/description/ 题目: You are given n ... 
- FireDAC 出现Variable length column[*] overflow. Value length - [80], column maximum length
		FireDAC 出现Variable length column[*] overflow. Value length - [80], column maximum length FireDAC的 TF ... 
- 718. Maximum Length of Repeated Subarray
		Given two integer arrays A and B, return the maximum length of an subarray that appears in both arra ... 
随机推荐
- swift 项目 oc 和 swift 混用,文件相互引用
			创建swift工程后,如果后面想新建 oc 文件,这时会生成一个 AppName-Bridging-Header.h文件 一,在swift 文件中 1> 引用swift 文件 什么都不需要操作 ... 
- Redis学习笔记~Redis主从服务器,读写分离
			回到目录 Redis这个Nosql的存储系统一般会被部署到linux系统中,我们可以把它当成是一个数据服务器,对于并发理大时,我们会使用多台服务器充当Redis服务器,这时,各个Redis之间也是分布 ... 
- 在 lua 中实现函数的重载
			在 lua 中实现函数的重载.注:好吧,lua中原来可以实现重载...local function create() local arg_table = {} local function dispa ... 
- C#学习系列-out与ref的区别
			参考:http://www.microsoftvirtualacademy.com/Content/ViewContent.aspx?et=9851&m=9839&ct=31056 如 ... 
- C#并行编程-并发集合
			菜鸟学习并行编程,参考<C#并行编程高级教程.PDF>,如有错误,欢迎指正. 目录 C#并行编程-相关概念 C#并行编程-Parallel C#并行编程-Task C#并行编程-并发集合 ... 
- Java EE开发平台随手记6——Mybatis扩展4
			这篇博客中来说一下对Mybatis动态代理接口方式的扩展,对于Mybatis动态代理接口不熟悉的朋友,可以参考前一篇博客,或者研读Mybatis源码. 扩展11:动态代理接口扩展 我们知道,真正在My ... 
- JS原生第四篇 (帅哥)
			1.1 1. 循环 for(初始化; 退出条件; 增量) { } while(退出条件) { } do { 语句 } while(退出条件) 2. switch( ) 多选1 ... 
- SSIS Component的ValidateExternalMetadata属性
			ValidateExternalMetadata Property Indicates whether the component validates its column metadata agai ... 
- 领会CSS,实际中的研究
			虽懂却不会,真是可怕,自认懂却了无. 善用CSS属性选择器 在用于区别和唯一的情况下完全可以使用属性选择器,而没有必要使用class或id p[city="http://www.css.co ... 
- WEBAPP开发技巧(手机网站开发注意事项)
			以下只是我个人得总结,如果你有更好的建议,请留言,一起共勉进步!!- -! 1.要响应式开发web,也就是页面必须自适应屏幕大小,可以采用流体布局,如之前的文章(自适应宽度布局),其他具体的小问题可以 ... 
