I'm getting the error "Invalid Identifier" whilst running this ALTER TABLE statement:
ALTER TABLE TRUCK ADD COLUMN WEIGHT INTEGER NOT NULL;
The syntax is like this, so I don't understand the error:
ALTER TABLE table_name ADD COLUMN column_name data_type[NOT NULL][UNIQUE]
The attribute WEIGHT doesn't need unique.
How do I include the "not greater than 1000" for the Integer data type into the Alter statement?