Renaming a table is not working in MySQL
RENAME TABLE group TO member;
The error message is
According to mysql docs: "to rename TEMPORARY tables, RENAME TABLE does not work. Use ALTER TABLE instead."
TEMPORARY
RENAME TABLE
ALTER TABLE
So this is the most portable method:
ALTER TABLE `old_name` RENAME `new_name`;