Created
September 2, 2009 19:10
-
-
Save DoubleBrotherProgrammer/179910 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
-- This is only a helper VIEW since currently you can not use RAND() in a UDF | |
-- USAGE : SELECT number FROM vRand | |
CREATE VIEW vRand | |
AS | |
SELECT RAND() AS 'number' | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment