vote up 0 vote down star

Here is my query:

    Select Top 10 CS.CaseStudyID,
    CS.Title,
    CSI.ImageFileName
From CaseStudy CS
Left Join CaseStudyImage CSI On CS.CaseStudyID = CSI.CaseStudyID
And CSI.CSImageID in(
    Select Min(CSImageID) -- >not really satisfactory
    From CaseStudyImage
    Group By CaseStudyID
    )
Order By CS.CaseStudyID ASC

Instead of min(CSImageID) I'd like a random record from my CaseStudyImage table that corresponds to the particular case study

Can anyone point me in the right direction pleas?

flag

40% accept rate

4 Answers

vote up 1 vote down

usually, just ORDER BY NEWID() does the trick

link|flag
vote up 1 vote down

You can use ranking function and newid() to create randomize order with grouping.

WITH CSI AS (
    SELECT CSI.CaseStudyID, CSI.ImageFileName,
    	ROW_NUMBER() OVER(PARTITION BY CSI.CaseStudyID ORDER BY newid()) AS RowNumber
    FROM CaseStudyImage CSI
)
SELECT TOP (10) CS.CaseStudyID, CS.Title, CSI.ImageFileName
FROM CaseStudy CS LEFT JOIN CSI On CS.CaseStudyID = CSI.CaseStudyID
WHERE CSI.RowNumber = 1
ORDER BY CS.CaseStudyID ASC
link|flag
vote up 0 vote down

This article describes 3 techniques for random sampling in t-sql. It depends on how much control you have over your table structure one of them might do want you want.

link|flag
vote up 0 vote down

ORDER BY RAND() LIMIT 1?

link|flag
No Limit in T-SQL or rand (there's newid()) and I'm geting lost combining the equivalent Top with order by newid() – Allen Hardy Dec 16 '08 at 11:49
Sorry there is Rand but its not helping me yet – Allen Hardy Dec 16 '08 at 11:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.