Created
June 16, 2017 05:51
-
-
Save jonedmiston/59f2c6ffee95279a8f09aa2d8036cec4 to your computer and use it in GitHub Desktop.
Q&A Points
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT TOP (1000) | |
[PersonId] | |
,[Points] | |
,[VotePoints] | |
, [NickName] | |
, [Lastname] | |
FROM [RockRMS-Spark].[dbo].[_org_sparkDevNetwork_QandA_Author] a | |
INNER JOIN [Person] p ON p.[Id] = a.[PersonId] | |
WHERE [Points] < 10000 | |
ORDER BY [Points] DESC | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment