Add a Column to your database using the command feature
Replace "fieldname" with the name that you would like to use. The "c(75)" represents a character-type field with a length of 75 spaces wide
ON ERROR com_message=message() alter table alias() add column fieldname c(75) |