Answers for "sql longtext"

SQL
9

mysql text type max length

Type       | Approx. Length     | Exact Max. Length Allowed
-----------------------------------------------------------
TINYTEXT   | 256 Bytes          |           255 characters
TEXT       |  64 Kilobytes      |        65,535 characters
MEDIUMTEXT |  16 Megabytes      |    16,777,215 characters
LONGTEXT   |   4 Gigabytes      | 4,294,967,295 characters
Posted by: Guest on July-06-2020
4

data types in sql

• number(num) - whole numbers up to num digits
• number(num,num2) - num whole numbers up to num2 decimals
• char(num) - fixed length character/string
• varchar2(num) - used for varying length data
• date - full date
• currency - used for prices
Posted by: Guest on January-27-2021
1

sql What type is that value?

SELECT TYPEOF(value);
Posted by: Guest on November-24-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language