Renaming a table is not working in MySQL
RENAME TABLE group TO member;
The error message is
For Mysql 5.6.18 use the following command
Mysql 5.6.18
ALTER TABLE `old_table` RENAME TO `new_table`
Also if there is an error saying ".... near RENAME TO ..." try removing the tick `
`