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?
相关问题
- sqlyog export query result as csv
- NOT DISTINCT query in mySQL
- MySQL: conduct a basic search
- Why sometimes there is one of more gap(s) in the v
- mySQL alter table on update, current timestamp
You can just use a select statement. Here I am creating a duplicate of "original_table" table from the "original_schema" schema/database to the "new_schema" schema :
You can just put any select statement you need ,add a condition and select the columns :