Created
November 20, 2009 20:10
-
-
Save DoubleBrotherProgrammer/239738 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
-- define our data table | |
WITH data( num ) | |
AS | |
( | |
-- our value range in a single query | |
SELECT 0 AS 'num' | |
UNION | |
SELECT 512 AS 'num' | |
UNION | |
SELECT 1024 AS 'num' | |
UNION | |
SELECT 1536 AS 'num' | |
UNION | |
SELECT 2048 AS 'num' | |
) | |
SELECT TOP 1 num FROM data | |
ORDER BY NEWID() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment