Code:
SELECT product_id, title FROM table_optionen WHERE stock <= 0 AND activ = 1 GROUP BY product_id, title LIMIT 0, 30;
Die DB Struktur sieht ungefähr so aus:
Code:
id | product_id | title | subtitle | stock | etc 1 | 13 | der Artikel | Rot | 0 | etc 2 | 13 | der Artikel | Blau | 1 | etc
Hat jemand eine Idee wie ich das mit einem Query lösen könnte?
Kommentar