Renaming a table is not working in MySQL
RENAME TABLE group TO member;
The error message is
group is a keyword (part of GROUP BY) in MySQL, you need to surround it with backticks to show MySQL that you want it interpreted as a table name:
group
RENAME TABLE `group` TO `member`;
added(see comments)- Those are not single quotes.