needmoremoney
Technical User
Hello all,
I have three tables, that I would like to join together.
This is my statement for two tables, how do I modified it to work with three table?
My third table is called EAccr
it have multiple fields but I only want the id and begin date fields. The fields are EAccr.id and EAccr.begindate.
.........
SELECT EInfo.id, EInfo.lastName, EInfo.firstName,
EInfo.middleName, EDed.dcode, CDed.description,
EDed.lastDate, EDed.rate, EDed.paidTowardsGoal, EDed.goal
INTO tempAccrualGoals
FROM (EInfo INNER JOIN EDed ON EInfo.id = EDed.id)
INNER JOIN CDed ON EDed.dcode = CDed.dcode
WHERE EDed.goal>0;
.......
Any help.. thanks much..
I have three tables, that I would like to join together.
This is my statement for two tables, how do I modified it to work with three table?
My third table is called EAccr
it have multiple fields but I only want the id and begin date fields. The fields are EAccr.id and EAccr.begindate.
.........
SELECT EInfo.id, EInfo.lastName, EInfo.firstName,
EInfo.middleName, EDed.dcode, CDed.description,
EDed.lastDate, EDed.rate, EDed.paidTowardsGoal, EDed.goal
INTO tempAccrualGoals
FROM (EInfo INNER JOIN EDed ON EInfo.id = EDed.id)
INNER JOIN CDed ON EDed.dcode = CDed.dcode
WHERE EDed.goal>0;
.......
Any help.. thanks much..