How to retrieve a specific users’ data from SQL Server?

From your description, What I understood is you have a table with the following details

Sample Table

And you want to sort only the record of Wolf Like this

Sample Result

If this is the case then you can just use a simple select Query with a where condition, like this

SELECT * FROM YourTable WHERE UserName="wolf";

Leave a Comment