I asked a question to which I got a great answer but which bring many other questions.
Say I've created a table:
CREATE TABLE test(my_id INTEGER(2));
How can I make sure that when INSERTING data in there (or imporing from csv atually) the field is exactly an INTEGER(2), not INTEGER(1) or anything else it would dynamically stretch to..? If I cannot are there no memory/performance issues with this?
Thanks!