Were we taught about renaming the tables ? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
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?

18th Feb 2017, 5:22 AM
Jithu Nair
Jithu Nair - avatar
1 ответ
+ 1
For Oracle, MySQL, and MariaDB you can use the following statement ALTER TABLE [table name] MODIFY [column name] [column type];
18th Feb 2017, 11:54 PM
Antonio Russo
Antonio Russo - avatar