Renaming a table is not working in MySQL
RENAME TABLE group TO member;
The error message is
ALTER TABLE old_table_name RENAME new_table_name;
or
RENAME TABLE old_table_name TO new_table_name;
ALTER TABLE `group` RENAME `member`
group is keyword so you must have to enclose into group
Without giving the database name the table is can't be renamed in my case, I followed the below command to rename the table.
RENAME TABLE current_db.tbl_name TO current_db.tbl_name;
Rename a table in MySQL :
ALTER TABLE current_name RENAME new_name;