The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
Im trying to find All threads created in a certain month, Can this product do this?
If so how? ![]() tia seaweed |
|
#2
|
|||
|
|||
|
Yes.
You can run your own query like: Code:
SELECT t.* FROM thread t WHERE t.dateline >= unix_timestamp(START_OF_MONTH) AND t.dateline < unix_timestamp(END_OF_MONTH) |
|
#3
|
|||
|
|||
|
tonjohn,
this query posted in cp? or in phpmyadmin? |
|
#4
|
|||
|
|||
|
You can either go to the admincp -> maintenance ->execute sql query OR you can do it in phpmyadmin.
Here is the actual query to select all threads created in January 2012: Code:
SELECT t.*
FROM thread t
WHERE t.dateline >= unix_timestamp('2012-01-01') AND t.dateline < unix_timestamp('2012-02-01')
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|