Right now I have a query like this:
ALTER TABLE MyTable ADD COLUMN MyColumn Number;
This adds a column named MyColumn whose data type is Number and whose field size is Double. (Double is evidently the default.) I want to specify “Long Integer” but I can’t seem to get the syntax right. Can anyone show me how to do this?