mixmastertobsi: MySQL ABfrage JOIN LIMIT

Beitrag lesen

Hallo, ich komme mal wieder bei eine Abfrage nicht weiter.

Ich habe folgende zwei Tabellen

anr    | artikel
----------------
1      | artikeltest
2      | artikeltest2

anr | attribut | preis
-----------------------
1   | gr1      | 99
1   | gr2      | 199
1   | gr3      | 249

Wie kann ich in einem JOIN sortieren und ein Limit setzen. Ich möchte, dass MySQL in der Tabelle attribut den niedrigsten Preis mit ausgibt.

SELECT artikel, preis FROM artikel JOIN attribut ON artikel_attribut.anr=artikel.anr WHERE artikel.anr='1'