![]() |
SQL select only not-deleted posts in a thread
I would like to build a SQL sentence where can get all postids from a thread, but no those who has been deleted.
I tried this: PHP Code:
Any help? Thanks in advance! |
[sql]
SELECT postid FROM post WHERE ((threadid=$tid) AND (visible<>1)) ORDER BY postid DESC") [/sql] <> is the MySQL NOT operator :) |
Dean i think he meant something different
you have to join the deletion log table: [sql]SELECT * FROM post LEFT JOIN deletionlog ON(deletionlog.primaryid = post.postid AND type = 'post') WHERE deletionlog.primaryid IS NULL [/sql] |
That is!
Thanks a lot |
you're welcome
|
All times are GMT. The time now is 05:49 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|