Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 226 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 226 Bytes

rand-hash

A Simplest way of Getting of randomized hash string.

Scripts

SQL on SQLServer

Prerequisites

  • Make a view for generation Random Numbers.
CREATE VIEW VW_RAND(GetRAND)
AS
	SELECT RAND()
GO