nikomaxos
06-19-2009, 12:21 AM
Hello to the comunity!
This is my first post!
Here is my case,
I have 2 tables, T1 and T2, both having 2 columns. In the first column they both have a customer code. T2 has on column 2 the customer's account balance. I use the INNER JOIN and works almost fine. My problem is that when i run the query it only brings the records that exist in both T1 and T2. I need to have the ones from T1 that do not exist in T2 also.
Here is my syntax:
SELECT T1.field1, T1.field2
FROM T2 INNER JOIN T1 ON T2.field1 = T1.field1;
Is there any easy way to solve this? I'm in my first steps in Access, so easy solutions could be really helpfull
This is my first post!
Here is my case,
I have 2 tables, T1 and T2, both having 2 columns. In the first column they both have a customer code. T2 has on column 2 the customer's account balance. I use the INNER JOIN and works almost fine. My problem is that when i run the query it only brings the records that exist in both T1 and T2. I need to have the ones from T1 that do not exist in T2 also.
Here is my syntax:
SELECT T1.field1, T1.field2
FROM T2 INNER JOIN T1 ON T2.field1 = T1.field1;
Is there any easy way to solve this? I'm in my first steps in Access, so easy solutions could be really helpfull