嘿傢伙我有問題作出查詢。我有這些表格:如何正確設置我的查詢?
lm_Artikel:
Index, Artikelbezeichnung, Status, Bestand,
Lieferant, Datum-Einlagerung, Lagerort, Typ
lm_Schwellwert:
Typ, Schwellwert
Typ
值是關鍵。在lm_Artikel
有多個artikel與Typ
相同。對於每個Typ
我有Schwellwert
。現在我想選擇Bestand
低於Schwellwert
的文章索引。
這是我到目前爲止有:
SELECT `Index`
FROM lm_Artikel
WHERE Bestand < (SELECT Schwellwert FROM lm_Schwellwert)
非常感謝我會在有可能的時候將它標記爲正確的答案 – Alesfatalis