Topics in Alphabetical Order auslesen?
Verfasst: 15.11.2002 19:34
Wie kann ich Alle Topics aus der tabelle phpbb_topics in Alphabethischer ( Schweres Wort
) Reihenfolge auslesen?
Grüße The stanky Pups

Grüße The stanky Pups
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
ORDER BY t.topic_last_post_id DESC
Code: Alles auswählen
ORDER BY t.topic_title ASC
Code: Alles auswählen
ORDER BY t.topic_type DESC, t.topic_last_post_id DESC
Code: Alles auswählen
ORDER BY t.topic_type DESC, t.topic_title ASC