Renaming a table is not working in MySQL
RENAME TABLE group TO member;
The error message is
You can use
RENAME TABLE `group` TO `member`;
Use back tick (`) instead of single quote (').