May 24, 2002 #1 fowlerlfc MIS Mar 20, 2002 136 US I have a table that has an unneeded column in it. How would I remove it? I also have a field that is set at 7 characters long, but I need to change it to 8 characters long. Any help would be greatly appreciated!
I have a table that has an unneeded column in it. How would I remove it? I also have a field that is set at 7 characters long, but I need to change it to 8 characters long. Any help would be greatly appreciated!
May 24, 2002 Thread starter #2 fowlerlfc MIS Mar 20, 2002 136 US Answered my first question: alter table tablename drop column columnname; Upvote 0 Downvote
May 24, 2002 #3 spook007 Programmer May 22, 2002 259 US for you second question: ALTER TABLE tableName MODIFY fieldName NewDataTypeOrConstraint; Upvote 0 Downvote