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.
我被要求编写一个带有注释字段的 SQL 表:
必须能够存储至少几页文本
我应该使用什么数据类型,什么值相当于几页文本?
在 MS SQLvarchar(max)中最多存储 2 147 483 647 个字符
varchar(max)
根据您使用的数据库,有Text或CLOB(字符大对象),您应该将其用于具有几页文本的列。
Text
CLOB
这样做的原因是,这些列的内容存储在数据库系统中的其他位置(离线),并且不会降低此表上其他操作的性能(例如,一些统计数据的聚合)。