Domanda

I have been asked to code an SQL table that has a comment field that:

must be able to store at least several pages of text

What data type should I use, and what value equates to several pages of text?

È stato utile?

Soluzione

In MS SQL varchar(max) stores a maximum of 2 147 483 647 characters

Altri suggerimenti

Depending on the Database you are using, there are Text or CLOB (character large object), which you should use for the column with the several pages of text.

The reason for this is, that the content of these columns are stored somewhere else in the database system (out-of-line) and don't decrease performance on other operations on this table (like e.g. aggregation of some statistaical data).

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top