OVH Cloud OVH Cloud

re: deux tables

1 réponse
Avatar
PHIL
Bonjour
j'ai ma table 1
avec pour champ
ID ZONE VALEUR

ma table 2 avec pour champ:
ID ZONE COMMENTAIRES.

est t'il possible de créer une autre table 3
avec pour champ
ID ZONE VALEUR COMMENTAIRES

si oui comment?
ma table 3 aurait donc 4 champs

merci de votre aide.

1 réponse

Avatar
Raymond [mvp]
Bonjour.

tu fais une requête création de table:

SELECT table1.ID, table1.ZONE, table1.Valeur, Table2.COMMENTAIRES
INTO table3
FROM table1 INNER JOIN Table2 ON table1.ID= Table2.ID;


--
@+
Raymond Access MVP
http://OfficeSystem.Access.free.fr/
http://OfficeSystem.Access.free.fr/runtime/
http://users.skynet.be/mpfa/ pour débuter sur le forum


"PHIL" a écrit dans le message de news:

Bonjour
j'ai ma table 1
avec pour champ
ID ZONE VALEUR

ma table 2 avec pour champ:
ID ZONE COMMENTAIRES.

est t'il possible de créer une autre table 3
avec pour champ
ID ZONE VALEUR COMMENTAIRES

si oui comment?
ma table 3 aurait donc 4 champs

merci de votre aide.