Quote:
Originally Posted by tischtelefon2
--------------- Added [DATE]1484640652[/DATE] at [TIME]1484640652[/TIME] ---------------
Mark, I hope it's okay that I ask another question. How do I need to modify the query if I want to extract all threads my friend started including all other postings(I mean replies) of theses threads? So I export the complete thread?
Thanks so much.
Michael
|
Sorry, I didn't know you had posted another question since the posts were merged. For this, I would run a sub-query, like so:
Code:
SELECT post.* FROM post AS post WHERE post.threadid IN (SELECT thread.threadid FROM thread AS thread WHERE thread.postusername = 'XXXXX')