I have 2 databases A and B. There is a table called Details in db A wih 4 fields. The fields are proffesional, amatuer, worldclass, trainee. And I also have a table called Details in db B with 2 fields called proffesional and trainee.

Now what I want to achieve is to convert Table Details schema in db A to that of in db B. How can I achieve this?

link|improve this question

50% accept rate
feedback

4 Answers

up vote 1 down vote accepted

Simply drop the unnecessary columns:

ALTER TABLE A.Details DROP COLUMN amateur;
ALTER TABLE A.Details DROP COLUMN wordclass;
link|improve this answer
feedback
DROP TABLE A.Details
CREATE TABLE `A.Details` SELECT * FROM `B.Details`;

And If you don't want to loose your data and just want to insert data from B databases's table..Go for--

INSERT INTO A.Details (proffesional, trainee)
SELECT *
FROM B.Details

Make sure amature and worlsclass are nullable..

link|improve this answer
But will I loose the 2 fields amatuer and worldclass from Details table in db A – Pinku Pink Jan 20 at 21:58
"Now what I want to achieve is to convert Table Details schema in db A to that of in db B." isn't that your question?? – Rajat Singhal Jan 20 at 21:59
Yes Rajat I need to change the schema – Pinku Pink Jan 20 at 22:02
If you want to change he schema of A...that is you want table Details in database A to be same as one in B..then this is what above code will do – Rajat Singhal Jan 20 at 22:04
Or if you want to just insert values not change table..then don't drop just insert in the A.Details all values of B.Details – Rajat Singhal Jan 20 at 22:05
show 10 more comments
feedback

what you want is to ALTER TABLE (DROP COLUMN): http://php.about.com/od/mysqlcommands/g/drop_column.htm

link|improve this answer
feedback

Try the bait-and-switch method

To keep All of A and have all of B loaded into A

CREATE TABLE A2 LIKE A;
INSERT INTO A2 SELECT * FROM A;
INSERT IGNORE INTO A2 (proffesional,trainee) SELECT proffesional,trainee FROM B;
ALTER TABLE A RENAME A2DROP;
ALTER TABLE A2 RENAME A;
DROP TABLE A2DROP;

To keep All of A and have all of B loaded into A but have A look like B

CREATE TABLE A2 LIKE B;
INSERT INTO A2 SELECT * FROM A;
INSERT IGNORE INTO A2 SELECT proffesional,trainee FROM B;
ALTER TABLE A RENAME A2DROP;
ALTER TABLE A2 RENAME A;
DROP TABLE A2DROP;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.