This is in Microsoft SQL Server CE, I have the following table
TABLE
[ID] [eventID] [factString]
I am trying to randomly select the factString
off of one row from the above table where the eventID
equals a specific number.
(randomly)
SELECT factString
FROM factTable
WHERE eventID = 1
That is to say, if there are 10 rows where the eventID
is 1, I want to return one row which is random every time.
Thanks.