ALTER TABLE statement
Use the ALTER TABLE statement to change the structure of an existing table in a database file. You can modify only one column in each statement. The formats of the ALTER TABLE statement are:
ALTER TABLE table_name ADD [COLUMN] column_definition
ALTER TABLE table_name DROP [COLUMN] unqualified_column_name
ALTER TABLE table_name ALTER [COLUMN] column_definition SET DEFAULT expr 
ALTER TABLE table_name ALTER [COLUMN] column_definition DROP DEFAULT
                                            You must know the table’s structure and how you want to modify it before using the ALTER TABLE statement.
Examples
| To | Sample SQL | 
|---|---|
| 
                                                             Add columns  | 
                                                        
                                                             Copy
                                                                 
                                                        
                                                                 | 
                                                    
| 
                                                             Remove columns  | 
                                                        
                                                             Copy
                                                                 
                                                        
                                                                 | 
                                                    
| 
                                                             Change a table name  | 
                                                        
                                                             Copy
                                                                 
                                                        
                                                                 | 
                                                    
| 
                                                             Change a column name  | 
                                                        
                                                             Copy
                                                                 
                                                        
                                                                 | 
                                                    
| 
                                                             Set the default value for a column  | 
                                                        
                                                             Copy
                                                                 
                                                        
                                                                 | 
                                                    
| 
                                                             Remove the default value for a column  | 
                                                        
                                                             Copy
                                                                 
                                                        
                                                                 | 
                                                    
Note  SET DEFAULT and DROP DEFAULT do not affect existing rows in the table, but change the default value for rows that are subsequently added to the table.