Rename a table in MySQL

 

 


Try any of these

RENAME TABLE `group` TO `member`;

or

ALTER TABLE `group` RENAME `member`;

Comments

Popular posts from this blog

Target class controller does not exist - Laravel 8