I think posts with attachments have the attach field of the post table set to the number of attachments
update post set threadid=5355 where threadid=3558 and attach=0 and dateline between unix_timestamp('2006-01-01') AND unix_timestamp('2006-01-31')
Note that that attach field is not indexed, so the query is not optimised. Perhaps you should consider indexing it.
|