sql中varchar的最大长度
你好 Transact-SQL 和 MySQL 中 varchar 的最大长度是多少? 我看到很多人在 TSQL 中使用 varchar(max)
。有多长? MySQL 中 varchar(max)
的等效表达式是什么?
谢谢
Hi
What's the maximum length of varchar in Transact-SQL and MySQL?
I see a lot of people use varchar(max)
in TSQL. How long is it?
What's the equivalent expression of varchar(max)
in MySQL?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决此类问题的第一站应该始终是手册。
有关 VARCHAR 的 mySQL 手册位于此处
T -有关 VARCHAR 的 SQL 手册位于此处
The first port of call for such questions should always be the manual.
the mySQL manual on VARCHAR is here
the T-SQL manual on VARCHAR is here
在 MySQL 中,行的最大大小为 64KB (65535)。
我不了解TSQL,所以我做了一些研究:
http://www.teratrax.com/articles/varchar_max.html
In MySQL, the max size of a row is 64KB (65535).
I don't know about TSQL, so I did some research:
http://www.teratrax.com/articles/varchar_max.html