Using Access 2003
Table1
Personid Date1
101 02-02-2008
102 02-02-2008
103 02-02-2008
101 03-02-2008
102 03-02-2008
103 03-02-2008
101 04-02-2008
102 04-02-2008
103 04-02-2008
So On…,
Table2
Personid Date1 Name Title
101 03-02-2008 Raja Accountant
102 04-02-2008 Ravi Supervisor
103 02-02-2008 Ram Manager
So on…,
I want to display all personid, date1 from table1 and name, title from table 2 where table2.date1 = table1.date
Expected Output:
Personid Date1 Name Title
101 02-02-2008
102 02-02-2008
103 02-02-2008 Ram Manager
101 03-02-2008 Raja Accountant
102 03-02-2008
103 03-02-2008
101 04-02-2008
102 04-02-2008 Ravi Supervisor
103 04-02-2008
So on…,
How to make a query for the above expected output.
Need Query Help