what is the use of text data type?
Answers
Answer:
TEXT data type. The TEXT data type stores any kind of text data. It can contain both single-byte and multibyte characters that the locale supports. The term simple large object refers to an instance of a TEXT or BYTE data type.
Explanation:
The TEXT is useful for storing long-form text strings that can take from 1 byte to 4 GB. We often find the TEXT data type for storing article body in news sites, product description in e-commerce sites. Different from CHAR and VARCHAR , you don't have to specify a storage length when you use a TEXT type for a column.
Answer:
The TEXT is useful for storing long-form text strings that can take from 1 byte to 4 GB. We often find the TEXT data type for storing article body in news sites, product description in e-commerce sites. Different from CHAR and VARCHAR , you don't have to specify a storage length when you use a TEXT type for a column..
Explanation: