form4 GmbH & Co.KG - Innovative Softwareentwicklung

Interessante Erfahrung unter MySQL 5
SuchenSitemap

Interessante Erfahrung unter MySQL 5

Oliver Meimberg, 05.07.2007

Interessante Erfahrung unter MySQL 5.0.18…

Weiß irgendjemand warum dieses Statement:

SELECT distinct a.id, a.name
FROM ums_gesamtbenutzerrechte c, wfl_aktion a
LEFT JOIN wfl_status ON a.to_id=wfl_status.id
WHERE a.from_id=32 and a.recht_id=c.rechteid and c.benutzerid=2
AND wfl_status.prozess_id=6
funktioniert, und dieses hier

SELECT distinct a.id, a.name
FROM wfl_aktion a,ums_gesamtbenutzerrechte c
LEFT JOIN wfl_status ON a.to_id=wfl_status.id
WHERE a.from_id=32 and a.recht_id=c.rechteid and c.benutzerid=2
AND wfl_status.prozess_id=6
nicht?

Häh?