Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a two table called A and B

both have same structure but B table have a one more field who may be filled or not.

i wanna a thing that when i move row from A to B then the extra field need to filled by value i have

INSERT INTO B SELECT * FROM a WHERE a.ID =?id

by this extra column can not be filled.

are anyone know that how i can filled extra column with a row of A and value for column Extra that i have.

share|improve this question

1 Answer

up vote 0 down vote accepted
insert into B select col1,col2,col3,null from A

i assume A has col1,2,3 put null at end to fill empty extra field. you can put null based on your table structure

for ex col1,null,col2 if extra field in 2nd column

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.