differentiate between text and number data type.
Answers
Answer:
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.
Numeric data types are typically a lot more compact than text. So the number 65535 can be stored in just two bytes as a number - but as a decimal text string, it would require 5 bytes (probably with an additional terminator or length indicator byte).
Hope this helps you
Please mark as brainliest
Answer:
Numeric data types are typically a lot more compact than text. So the number 65535 can be stored in just two bytes as a number - but as a decimal text string, it would require 5 bytes (probably with an additional terminator or length indicator byte).
Explanation:
Hope it helps...