想做一个像知乎这样的论坛,想请教各位大神除了用text类型的数据还能用什么方法来存储像知乎这样的长回答的数据。
text就可以吧。
sqlserver后面的版本好像varchar可以一直放到max(等价于int.max字节了,这个不确定)
最大是8000,好像是只有text适合一点,谢谢。
@flying_fish:
varchar [ ( n | max ) ]
Variable-length, non-Unicode string data. n defines the string length and can be a value from 1 through 8,000. max indicates that the maximum storage size is 2^31-1 bytes (2 GB). The storage size is the actual length of the data entered + 2 bytes.