How to copy table between two models in Mysql workbench?

后端 未结 9 1953
小鲜肉
小鲜肉 2020-12-28 14:42

I am doing some databese thing, I need copy one table from one model to another, but i try many ways there no effect. Is there any way for doing this?

9条回答
  •  死守一世寂寞
    2020-12-28 15:45

    step 1 : Righit click on table > copy to clipboard > create statement

    step 2: paste clipboard in the query field of workbench.

    step 3: remove (``) from the name of the table and name of the model(schema)followed by a dot.

    eg : `cusine_menus` -> schema_name.cusine_menus

    execute

提交回复
热议问题