Answers for "rename column table mysql"

SQL
8

rename table in mysql

RENAME TABLE old_table TO new_table;
Posted by: Guest on May-04-2020
2

change column name mysql command line

ALTER TABLE `members` ADD COLUMN `credit_card_number` VARCHAR(25);
Posted by: Guest on January-19-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language