No matter how I twist it, I get the wrong outcome.
I have table "numbers" and table "letters", each with fields af, bf, cf, df . They are keyed on field a
the records in "numbers" are
a 1 1 1
b 2 2 2
c 3 3 3
d 4 4 4
The records in "letters" are
a a a a
b b b b
c c c c
d d d d
I need the query result to read
a 1 1 a
b 2 2 b
c 3 3 c
d 4 4 d
If I query with join elements
Query
ANSWER: RIV:ANSWER.DB
tests\numbers.db | Bf | Cf |
Insert | _join2 | _join3 |
tests\letters.db | Af | Bf | Cf | Df |
| Check | Check _join2 | Check _join3 | Check |
EndQuery
I get.(fields a, b, c, d in original order)
af bf cf df
__________________________
a a a a
b b b b
c c c c
d d d d
Ie, letters inserted over numbers.
If I work with example elements:
Query
ANSWER: RIV:ANSWER.DB
tests\numbers.db | Af | Bf | Cf |
| _x | Check | Check |
tests\letters.db | Af | Df |
| Check _x | Check |
EndQuery
I get the right information in the wrong structure
cf af df bf
_________________________
1 a a 1
2 b b 2
3 c c 3
4 d d 4
What I want is to be able to import fields from one table into the other in the original order.
Needless to say, this is not the table. The original has about 700 entries and perhaps 50 fields.
I know this is easy, but it's the easy ones that get me.
I have table "numbers" and table "letters", each with fields af, bf, cf, df . They are keyed on field a
the records in "numbers" are
a 1 1 1
b 2 2 2
c 3 3 3
d 4 4 4
The records in "letters" are
a a a a
b b b b
c c c c
d d d d
I need the query result to read
a 1 1 a
b 2 2 b
c 3 3 c
d 4 4 d
If I query with join elements
Query
ANSWER: RIV:ANSWER.DB
tests\numbers.db | Bf | Cf |
Insert | _join2 | _join3 |
tests\letters.db | Af | Bf | Cf | Df |
| Check | Check _join2 | Check _join3 | Check |
EndQuery
I get.(fields a, b, c, d in original order)
af bf cf df
__________________________
a a a a
b b b b
c c c c
d d d d
Ie, letters inserted over numbers.
If I work with example elements:
Query
ANSWER: RIV:ANSWER.DB
tests\numbers.db | Af | Bf | Cf |
| _x | Check | Check |
tests\letters.db | Af | Df |
| Check _x | Check |
EndQuery
I get the right information in the wrong structure
cf af df bf
_________________________
1 a a 1
2 b b 2
3 c c 3
4 d d 4
What I want is to be able to import fields from one table into the other in the original order.
Needless to say, this is not the table. The original has about 700 entries and perhaps 50 fields.
I know this is easy, but it's the easy ones that get me.