D
David McKnight
My current query is:
SELECT [Scores-Win Loss].Season, [Scores-Win Loss].Visitor, [Scores-Win
Loss].Home, [122 Power Rankings DB].[Power Ranking], [122 Power Rankings
DB_1].[Power Ranking]
FROM [122 Power Rankings DB] AS [122 Power Rankings DB_1] INNER JOIN ([122
Power Rankings DB] INNER JOIN [Scores-Win Loss] ON ([122 Power Rankings
DB].Season = [Scores-Win Loss].Season) AND ([122 Power Rankings DB].Home =
[Scores-Win Loss].Visitor)) ON ([122 Power Rankings DB_1].Season =
[Scores-Win Loss].Season) AND ([122 Power Rankings DB_1].Home = [Scores-Win
Loss].Home);
Is there a way to add a value to the [122 Power Rankings DB] & [122 Power
Rankings DB_1] when ever there is not a match from the [Scores-Win Loss]
query?
I would like the value to equal "0" when ever there is not a record from the
[122 Power Ranking DB] in the new query.
fyi : [122 Power Rankings DB] & [122 Power Rankings DB_1] are infact the
same data (don't ask why I set it up this way, too many other things to
change at this point).
SELECT [Scores-Win Loss].Season, [Scores-Win Loss].Visitor, [Scores-Win
Loss].Home, [122 Power Rankings DB].[Power Ranking], [122 Power Rankings
DB_1].[Power Ranking]
FROM [122 Power Rankings DB] AS [122 Power Rankings DB_1] INNER JOIN ([122
Power Rankings DB] INNER JOIN [Scores-Win Loss] ON ([122 Power Rankings
DB].Season = [Scores-Win Loss].Season) AND ([122 Power Rankings DB].Home =
[Scores-Win Loss].Visitor)) ON ([122 Power Rankings DB_1].Season =
[Scores-Win Loss].Season) AND ([122 Power Rankings DB_1].Home = [Scores-Win
Loss].Home);
Is there a way to add a value to the [122 Power Rankings DB] & [122 Power
Rankings DB_1] when ever there is not a match from the [Scores-Win Loss]
query?
I would like the value to equal "0" when ever there is not a record from the
[122 Power Ranking DB] in the new query.
fyi : [122 Power Rankings DB] & [122 Power Rankings DB_1] are infact the
same data (don't ask why I set it up this way, too many other things to
change at this point).