Huhu
ich habe folgende Anfrage:
SELECT c.country, m.name, MAX(m.height) AS 'Höhe'
FROM geo_mountain g, mountain m, encompasses e, country c
WHERE e.continent='Asia'
AND e.country=g.country
AND g.mountain=m.name
AND e.country=c.code
GROUP BY c.country
ORDER BY Höhe desc
Beim Ausführen kommt folgender Fehler: OCIStmtExecute: ORA-00923: FROM keyword not found where expected
Ich versteh ned wieso der das FROM ned findet
Hoffe ihr könnt mir helfen. Danke schon mal
ich habe folgende Anfrage:
SELECT c.country, m.name, MAX(m.height) AS 'Höhe'
FROM geo_mountain g, mountain m, encompasses e, country c
WHERE e.continent='Asia'
AND e.country=g.country
AND g.mountain=m.name
AND e.country=c.code
GROUP BY c.country
ORDER BY Höhe desc
Beim Ausführen kommt folgender Fehler: OCIStmtExecute: ORA-00923: FROM keyword not found where expected
Ich versteh ned wieso der das FROM ned findet
Hoffe ihr könnt mir helfen. Danke schon mal