I want to move table from one schema to another schema in mysql , can anybody tell me how can I do this .
Moving fooTable from old_db_schema to new_db_schema will be a 2 step process:
Step 1:
CREATE SCHEMA new_db_schema --Assuming you do not have new schema GO
Step 2:
ALTER SCHEMA new_db_schema TRANSFER old_db_schema.fooTable GO