Moin moin!
Ich werde langsam verrückt, ich bekomme folgende Fehlerangabe
<schnipp>
You have an error in your SQL syntax near '( ( hostdb_host
INNER JOIN hostdb_interface ON hostdb_host.hostID = hostdb_inte' at line 3
</schnipp>
Was der fehler bedeutet ist schon klar, ab ich weiß nciht was verkehrt sein soll... ich habe spaßeshalbe meinen Select in MS-Access abgeschickt und siehe da..es funzt.
könnt ihr mir weiter helfen?
Ach ja der qry:
<schnapp>
SELECT hostdb_host.hostname, hostdb_osversion.osversion, hostdb_ipaddress.ipaddress
FROM hostdb_osversion
INNER JOIN (
(
hostdb_host
INNER JOIN hostdb_interface ON hostdb_host.hostID = hostdb_interface.hostID
)
INNER JOIN hostdb_ipaddress ON hostdb_interface.interfaceID = hostdb_ipaddress.interfaceID
) ON hostdb_osversion.osversionID = hostdb_host.osversionID
WHERE (
(
(
hostdb_ipaddress.ipaddress
) = - 1962070763
)
)
LIMIT 0 , 30
</schnapp>