Quote:
Originally Posted by 93Corvette
Woo-hoo, a Corvette lady.... That is Great!
Thanks Lynne... I'm a person that like to try the basic and understand then before I screw up my forum. Thanks for the response, and motor on!....
|
You can run any kind of query through vbulletin. Go to w3schools.com for a basic lesson in SQL.
Some examples you could run include:
[SQL]SELECT * FROM thread WHERE threadid = '5'[/SQL]
This will select everything from the thread table, where threadid = 5
[SQL]SELECT username FROM user WHERE userid = '1'[/SQL]
This will select the username of a user where his/her's userid = 1
[SQL] UPDATE user SET email = 'fakeemail@fake.com' WHERE userid = '5'[/SQL]
This will set a users email address to
fakeemail@fake.com where their userid = 5