document.write('<link rel="stylesheet" href="http://gist.github.com/stylesheets/gist/embed.css"/>')





document.write('<div id=\"gist-239710\" class=\"gist\">\n  \n  \n    \n            \n\n      <div class=\"gist-file\">\n        <div class=\"gist-data gist-syntax\">\n          \n          \n          \n            <div class=\"gist-highlight\"><pre><div class=\"line\" id=\"LC1\">-- var to hold random value<\/div><div class=\"line\" id=\"LC2\">declare @field_val int<\/div><div class=\"line\" id=\"LC3\">&nbsp;<\/div><div class=\"line\" id=\"LC4\">-- create table var to hold value range [ 0, 512, 1024, 1536, 2048 ]<\/div><div class=\"line\" id=\"LC5\">SELECT	0 AS \'num\'<\/div><div class=\"line\" id=\"LC6\">INTO	#temp<\/div><div class=\"line\" id=\"LC7\">&nbsp;<\/div><div class=\"line\" id=\"LC8\">-- insert data into table var<\/div><div class=\"line\" id=\"LC9\">INSERT INTO #temp VALUES ( 512 )<\/div><div class=\"line\" id=\"LC10\">INSERT INTO #temp VALUES ( 1024 )<\/div><div class=\"line\" id=\"LC11\">INSERT INTO #temp VALUES ( 1536 )<\/div><div class=\"line\" id=\"LC12\">INSERT INTO #temp VALUES ( 2048 )<\/div><div class=\"line\" id=\"LC13\">&nbsp;<\/div><div class=\"line\" id=\"LC14\">-- assign random value<\/div><div class=\"line\" id=\"LC15\">SELECT TOP 1 @field_val = num FROM #temp ORDER BY NEWID()<\/div><div class=\"line\" id=\"LC16\">&nbsp;<\/div><div class=\"line\" id=\"LC17\">-- show value<\/div><div class=\"line\" id=\"LC18\">SELECT @field_val<\/div><div class=\"line\" id=\"LC19\">&nbsp;<\/div><div class=\"line\" id=\"LC20\">-- drop it<\/div><div class=\"line\" id=\"LC21\">DROP TABLE #temp<\/div><\/pre><\/div>\n        \n        <\/div>\n\n        <div class=\"gist-meta\">\n          <a href=\"http://gist.github.com/raw/239710/2f16a6b0d7ff5d39911ede31b14e138dbf71a19d/select%20random%20value\" style=\"float:right;\">view raw<\/a>\n          <a href=\"http://gist.github.com/239710#file_select random value\" style=\"float:right;margin-right:10px;color:#666\">select random value<\/a>\n          <a href=\"http://gist.github.com/239710\">This Gist<\/a> brought to you by <a href=\"http://github.com\">GitHub<\/a>.\n        <\/div>\n      <\/div>\n    \n  \n<\/div>\n')
