To add a column here is the syntax
alter table <table name>
add <column name> <datatype>;
example: (add a column named location to a table emp_info)
alter table emp_info
add location varchar(255);
To rename a column in sql, here is the syntax
alter table <table name>
rename column <old name> to <new name>;
example: (change name of column location to office)
alter table emp_info
rename column location to office;
To delete or remove a column, use the drop command
alter table <table name>
drop column <column name>;
Example:
alter table emp_info
drop column office;
Return to SQL page: