fan: MYSQL Abfrage

Beitrag lesen

Hallo,

ich habe zwei Tabellen

table artikel

artikel_id bezeichnung
1          apfel
2          birne
3          schokolade

table preis

artikel_id  preis
1           5.00     (das wäre der apfel)
2           2.00

Nun möchte ich abfragen, bei welchen Artikel kein Preis vorhanden ist. Geht das?

SELECT artikel_id FROM artikel A, preis B WHERE A.artikel_id = B.artikel_id AND B.preis IS ??

Gruß

fan