Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How we can copy one table data into another table whose name
same as table but in differ database

Answers were Sorted based on User's Feedback



How we can copy one table data into another table whose name same as table but in differ database..

Answer / jayanthi reddy

create table tablename select * from databasename.tablename

i'm expecting this will work. if anything wrong correct it

Is This Answer Correct ?    8 Yes 7 No

How we can copy one table data into another table whose name same as table but in differ database..

Answer / jyoti

SELECT *
INTO table_name [IN externaldatabase]
FROM tablename

Is This Answer Correct ?    4 Yes 3 No

How we can copy one table data into another table whose name same as table but in differ database..

Answer / payal

select * into databasename.<TableName> from (select * from
databasename.<TableName>)

Is This Answer Correct ?    10 Yes 10 No

How we can copy one table data into another table whose name same as table but in differ database..

Answer / nikki

i think it is not possible to execute query at a time for
two database

Is This Answer Correct ?    4 Yes 4 No

How we can copy one table data into another table whose name same as table but in differ database..

Answer / saket bharti

create table database2.tablename as (select * from
database1.tablename where 1=2);

This will create a new table in database2 with the same
structure as the table in database1 ,but will not contain
any values or constraints of database1 table.

create table database2.tablename as (select * from
database1.tablename );

This will create a new table in database2 with all the
structure and values from the table from database1.

Is This Answer Correct ?    1 Yes 1 No

How we can copy one table data into another table whose name same as table but in differ database..

Answer / guru

INSERT INTO database2.table_name (column_name)
SELECT table_name.column_name FROM table_name

If two databases are in same server, this code will work.
For more details visit,
http://www.phponwebsites.com/2013/12/Copy-values-from-one-database-to-another-in-mysql.html

Is This Answer Correct ?    0 Yes 0 No

How we can copy one table data into another table whose name same as table but in differ database..

Answer / bhas

CREATE TABLE `bhas`.`cds` ( table structure and data)

INSERT INTO `bhas`.`cds`
SELECT *
FROM `cdcol`.`cds` ;

where bhas is new db and cds is table name, cdcol is old db

Is This Answer Correct ?    1 Yes 2 No

How we can copy one table data into another table whose name same as table but in differ database..

Answer / mahesh murali

select * into db1.db1_table from (select * from
db2.db2_table)

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More MySQL Interview Questions

What is difference between microsoft sql and mysql?

0 Answers  


How to create table with same structure of student table in mysql?

0 Answers  


Does uninstalling mysql delete database?

0 Answers  


How do you convert to a different table type?

1 Answers  


What is deterministic in mysql?

0 Answers  


What are the different table present in MYsql?

3 Answers  


How can you validate emails using a single query?

0 Answers  


How can we encrypt and decrypt a data presented in a table using mysql?

0 Answers  


What is max connection in mysql?

0 Answers  


What are the limitations of mysql?

0 Answers  


How to create a trigger in mysql?

0 Answers  


What are the different tables present in MySQL?

0 Answers  


Categories