1
vote
2answers
48 views

How to insert a value after values already in the column mysql

In my user table, I have a userid column, and membergroupids column. Here is the query I have so far. UPDATE `user` SET `membergroupids`=`,100` WHERE `userid` IN ( 312 , 331 , 538 , 528 , 77 , 80 , ...
0
votes
2answers
395 views

vBulletin Getting new posts on a particular forum / replies on a thread

I need to get a new replies / forum posts out of a vbulletin forum . What would be a best manner of fetching it. Regards, Azeem
4
votes
3answers
2k views

How to write an SQL query that counts the number of rows per month and year?

Had anyone any idea how to query a vbulletin database to generate a report on the number of registrations per month/year to achive results like.. MM/YYYY Count 01/2001 : 10 02/2001 : 12 ...
0
votes
1answer
309 views

SQL query a new thread in vBulletin

How to make a query to the database(mysql) to create a thread? I need to create a thread from a non-registered user, if not, then from the present .. Simply query the database with the subject "Test", ...