0
Were we taught about renaming the tables ?
Need to know how to rename a particular table's column after its created and has content, without shifting or moving the content or deleting the column after copying. so basically. just rename. is "Rename" sufficient?
1 Respuesta
+ 1
For Oracle, MySQL, and MariaDB you can use the following statement
ALTER TABLE [table name]
MODIFY [column name] [column type];