So habe ich eine Abfrage wieMySQL Wo IN, Grenzausgabe
SELECT * FROM table WHERE id IN (1,2,3) LIMIT 10
Ist es möglich, die Anzahl der Ausgabe für jedes der Elemente in einem Array wie
SELECT * FROM table WHERE id 1 LIMIT 10
SELECT * FROM table WHERE id 2 LIMIT 10
SELECT * FROM table WHERE id 3 LIMIT 10
Beachten Sie, dass LIMIT ohne ORDER BY ziemlich bedeutungslos ist. – Strawberry