G
Guest
Can someone help me disect the SQL below just a bit to give me a hint where
to look for this error. my understand it means that I am trying to join two
different types of data somewhere along the way.
SELECT DISTINCTROW [Individual Chrono History].INVENTORY, Offenders.FName,
Offenders.LName, [Individual Chrono History].[ID Num], [Individual Chrono
History].[Note Date], [Individual Chrono History].Note
FROM Offenders INNER JOIN [Individual Chrono History] ON Offenders.INVENTORY
= [Individual Chrono History].INVENTORY
WHERE ((([Individual Chrono History].INVENTORY)=[Forms]![Main
Form]![INVENTORY]))
ORDER BY [Individual Chrono History].[ID Num];
As I have said in a previous post, I have inherited some Access management,
and I am having to "learn my way along the way" so to speak. I'm OK with my
own stuff, but only because I don't have to fix something that's broken and
is not beyond my level of database design. But someone else's creations are
driving me buggy.
to look for this error. my understand it means that I am trying to join two
different types of data somewhere along the way.
SELECT DISTINCTROW [Individual Chrono History].INVENTORY, Offenders.FName,
Offenders.LName, [Individual Chrono History].[ID Num], [Individual Chrono
History].[Note Date], [Individual Chrono History].Note
FROM Offenders INNER JOIN [Individual Chrono History] ON Offenders.INVENTORY
= [Individual Chrono History].INVENTORY
WHERE ((([Individual Chrono History].INVENTORY)=[Forms]![Main
Form]![INVENTORY]))
ORDER BY [Individual Chrono History].[ID Num];
As I have said in a previous post, I have inherited some Access management,
and I am having to "learn my way along the way" so to speak. I'm OK with my
own stuff, but only because I don't have to fix something that's broken and
is not beyond my level of database design. But someone else's creations are
driving me buggy.