Column Overview
When you create the columns in the table, the column names are case-insensitive.
Each column has the following:
-
A data type
-
Optional nullability, primary key and foreign key properties
-
An optional default value
Unless you explicitly declare a column NOT NULL, columns are
nullable. If a column in a table is nullable, it can contain a NULL
value. Otherwise, each row in the table must have a non-NULL value in
that column.
The format of TimesTen columns cannot be altered. It is possible to add or remove
columns but not to change column definitions. To add or remove columns, use the
ALTER TABLE statement. To change column definitions, an application
must first drop the table and then recreate it with the new definitions.