☞ It is free and an open source software.
☞ You can download it from www.libreoffice.org
☞ It refers to the type of data that will be stored in that particular field.
☞ The memory size of a field varies according to its data type.
☞ Data type - numeric, text, binary, boolean, date, currency.
☞ Text Data Type :
DATA TYPE | DESCRIPTION |
---|---|
LONGVARCHAR | Stores up to maximum length i.e. 64000 characters |
CHAR | Stores exactly the length specified by the user i.e. fixed length |
VARCHAR | Stores up to the specified length i.e. number of bytes allocated depends on the number of characters entered by the user. |
☞ Numeric Data Type :
DATA TYPE | SIGNED | RANGE |
---|---|---|
TINYINT | NO | 0 to 255 |
SMALLINT | YES | -32768 to 32768 |
INTEGER | YES | -2.14 x 109 to 2.14 x 109 |
BIGINT | YES | -2.3 x 1018 to 2.3 x 1018 |
NUMERIC | YES | Unlimited |
DECIMAL | YES | Unlimited |
REAL | YES | 5 x 10-324 to 1.79 x 10308 |
☞ Currency Data Type :
☞ Date Data Type :
DATA TYPE | DESCRIPTION |
---|---|
DATE | Stores the year, month and day as it is stored in the system. |
TIME | Stores the time of the day as hour, minute and second. |
TIMESTAMP | Stores date and time information at once. |
☞ Boolean Data Type :
☞ Binary Data Type :