How we can copy one table data into another table whose name
same as table but in differ database
Answer Posted / payal
select * into databasename.<TableName> from (select * from
databasename.<TableName>)
| Is This Answer Correct ? | 10 Yes | 10 No |
Post New Answer View All Answers
Explain the difference between procedure and function in mysql?
How many columns is too many mysql?
How do I copy a table in mysql?
Does mysql support sequence?
What could be the reason that the mysql statement 'select avg (salary) from emp' generates an inaccurate output?
What is mysql community server?
In mysql, what is the default storage engine?
What is the limit of mysql database?
Is mysql same as sql?
What is meant by sharding?
When to use order by in delete statement?
How do we use % when performing a search query?
Where is mysql data stored?
How to get help information from the server?
How do you select a table?