You are on page 1of 1

select t1.Browser,t2.Gender,t3.Age,t4.Income,t5.Ethnicity,t6.Education,t7.

Childr
en,t8.InstallLocation,t9.Zip from (select top(1) ShortName as Browser from Alexa
_Browser order by newid()) as t1,(select top(1) [Value] as Gender from Alexa_Gen
der order by newid()) t2,(select top(1) Age_Group as Age from Alexa_AgeGroup ord
er by newid()) as t3,(select top(1) Income as Income from Alexa_Income order by
newid()) as t4,(select top(1) Ethnicity from Alexa_Ethnicity order by newid()) a
s t5,(select top(1) Education from Alexa_Education order by newid()) as t6,(sele
ct top(1) Children from Alexa_Children order by newid()) as t7,(select top(1) In
stallLocation from Alexa_InstallLocation order by newid()) as t8,(select top(1)
Zip from Alexa_Zipcode order by newid()) as t9
select top(1) ShortName as Browser from Alexa_Browser order by newid()
select top(1) [Value] as Gender from Alexa_Gender order by newid()
select top(1) Age_Group as Age from Alexa_AgeGroup order by newid()
select top(1) Income as Income from Alexa_Income order by newid()
select top(1) Ethnicity from Alexa_Ethnicity order by newid()
select top(1) Education from Alexa_Education order by newid()
select top(1) Children from Alexa_Children order by newid()
select top(1) InstallLocation from Alexa_InstallLocation order by newid()
select top(1) Zip from Alexa_Zipcode order by newid()

You might also like