July 3rd, 2007
Interessante Erfahrung unter MySQL 5
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=6funktioniert, 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=6nicht?
Häh?

