0

I am building a small blog system for adding news to my website and I want to know what is the most useful type to save the news in the database with the html format and get it from the database with its plain text format to show in the browser??

4

1 回答 1

0

这取决于您存储的字符串有多大,但很可能您希望使用Text 数据类型(Blob 的非二进制版本)。

一般的经验法则是使用 VARCHAR 直到 255 个字符,然后使用 Text。Blob 和 Text 都允许您在不删除行尾的情况下存储巨大的字符串值。

对于您的使用,TinyText 很可能就足够了。

您可以在此处阅读有关它们的更多信息:

http://dev.mysql.com/doc/refman/5.7/en/blob.html

于 2013-10-21T05:57:25.743 回答