H
Helgeduelbeck
Hi guys
I'm newbie on sql structure and syntax.
And I have this problem :
I have 3 table :
Table_A
FieldA1 FieldA2
a01 John
a02 James
a03 Bob
a04 Sandra
Table_B
FieldB1 FieldB2
b01 Desk
b02 Chair
b03 Sofa
b04 Saddle
b05 Cradle
Table_C
FieldC1 FieldC2
c01 Computer
c02 Phone
c03 Calculator
c04 VCR
c05 TV
c06 DVD
c07 CD
I want to manage those tables with the queries and
the output datasheet will look like this
FieldA1 FieldA2 FieldB1 FieldB2 FieldC1 FieldC2 FieldD1
a01 John b02 Chair c04 VCR
a01b02c04
c06 DVD
a01b02c06
c07 CD
a01b02c07
a02 James b03 Sofa c01 Computer a02b03c01
b04 Saddle c02 Phone
a02b03c02
c05 TV
a02b03c05
a03 Bob b01 Desk c03 Calculator
a03b01c03
c05 TV
a03b01c05
a04 Sandra b05 Cradle c06 DVD a04b05c06
How many queries should I make ?
Please help me the sql statement too ....
Thanks ...
I'm newbie on sql structure and syntax.
And I have this problem :
I have 3 table :
Table_A
FieldA1 FieldA2
a01 John
a02 James
a03 Bob
a04 Sandra
Table_B
FieldB1 FieldB2
b01 Desk
b02 Chair
b03 Sofa
b04 Saddle
b05 Cradle
Table_C
FieldC1 FieldC2
c01 Computer
c02 Phone
c03 Calculator
c04 VCR
c05 TV
c06 DVD
c07 CD
I want to manage those tables with the queries and
the output datasheet will look like this
FieldA1 FieldA2 FieldB1 FieldB2 FieldC1 FieldC2 FieldD1
a01 John b02 Chair c04 VCR
a01b02c04
c06 DVD
a01b02c06
c07 CD
a01b02c07
a02 James b03 Sofa c01 Computer a02b03c01
b04 Saddle c02 Phone
a02b03c02
c05 TV
a02b03c05
a03 Bob b01 Desk c03 Calculator
a03b01c03
c05 TV
a03b01c05
a04 Sandra b05 Cradle c06 DVD a04b05c06
How many queries should I make ?
Please help me the sql statement too ....
Thanks ...