Verfasst: 08.10.2008 17:59
Richtig.
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Nicht nur Sekundenbruchteile sondern sogar simultan.Seether hat geschrieben:...Sprich wir reden hier von 100 Usern innerhalb von Sekundenbruchteilen nehme ich mal an?
Code: Alles auswählen
"SELECT t.topic_title,t.forum_id, p.post_id
FROM phpbb3_topics t
LEFT JOIN phpbb3_posts p ON (t.topic_id = p.topic_id)
WHERE p.forum_id NOT IN (1,2,3)
ORDER by p.post_time DESC
LIMIT 15";
Code: Alles auswählen
"SELECT p.post_id, p.forum_id, t.topic_title
FROM phpbb3_posts AS p
LEFT JOIN phpbb3_topics AS t ON p.topic_id = t.topic_id
WHERE p.forum_id NOT IN (1,2,3)
ORDER BY p.post_id DESC
LIMIT 0, 15";