MySQL Subquery LIMIT

Wie der Titel schon sagt, wollte ich eine Problemumgehung dafür ...

SELECT 
  comments.comment_id,
  comments.content_id,
  comments.user_id,
  comments.`comment`,
  comments.comment_time,
  NULL
FROM
  comments
WHERE
  (comments.content_id IN (SELECT content.content_id FROM content WHERE content.user_id = 1 LIMIT 0, 10))

Pros

Antworten auf die Frage(2)

Ihre Antwort auf die Frage