|
You can rename a column in a table as follows:
ALTER TABLE tablename RENAME COLUMN oldcolumn TO newcolumn;
I would suggest that you must be careful and assured while designing the database itself regarding these. Only if it is very essential go for this process now.
|