Hi,
I have two tables:
Table 1
field1 field 2
AAA BBB
CCC NULL
Table 2
field3 field 4
AAA BBB
CCC NULL
Where null is the null value, not the word null.
If I link these tables so that field1<->field3 and field2<->field4, and then write a query to get field1 and field2, the results are:
field1 field 2
AAA BBB
Basically, its not pulling any field where there is a null value as part of the link. Any idea how to fix this? I want the end results of this query to look like:
field1 field 2
AAA BBB
CCC NULL
I hope this isn't too confusing. Thanks in advance for any insights,
Caesar
I have two tables:
Table 1
field1 field 2
AAA BBB
CCC NULL
Table 2
field3 field 4
AAA BBB
CCC NULL
Where null is the null value, not the word null.
If I link these tables so that field1<->field3 and field2<->field4, and then write a query to get field1 and field2, the results are:
field1 field 2
AAA BBB
Basically, its not pulling any field where there is a null value as part of the link. Any idea how to fix this? I want the end results of this query to look like:
field1 field 2
AAA BBB
CCC NULL
I hope this isn't too confusing. Thanks in advance for any insights,
Caesar