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.