You could try creating a Union query first. For your example, you'd use
SELECT "man" AS sex, product, color, design FROM Code_man UNION SELECT "woman" AS sex, product, color, design FROM Code_woman
-- Doug Steele, Microsoft Access MVP http://I.Am/DougSteele (no private e-mails, please)
"Ixak" <ixak81[ at ]yahoo.es> wrote in message news:OLbwB1Y2GHA.1288[ at ]TK2MSFTNGP03.phx.gbl...
[Quoted Text] > Hello > I would like to modify the design of my database and convert 4 different > tables whose only difference is the main code, the rest of the fields are > the same, in one table.I mean; > > Code_man > product > color > design > > Code_woman > product > color > design > > And convert in > > Code > sex: woman/man > product > color > design > > Is there any special method instead of doing it manually? > thanks >
|