Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

SQL SERVER 2008 r2

Elite Diviner
Joined
Jan 17, 2014
Messages
401
Reaction score
40
Hello Everyone . Just want to ask how to look up accounts individually on sql server 2008 r2 using query script?
Thanks



UP! UP UP UP



fixed :)

sql query to look up account manually

SELECT * FROM dbo.Account where UserID ='test.tad'
 
Junior Spellweaver
Joined
Jan 17, 2018
Messages
105
Reaction score
0
USE UserLogin

Select * From account (Shows all accounts)

Select * from account where userid='username123' (shows username123's info)
 
Upvote 0
Back
Top