vote up 0 vote down star

How can I retrive random random ItemIDs from the list of existing ItemIDs in ItemID column intge db, given below is the sqlcommand I've used.

(SqlCommand RetrieveComm =new SqlCommand("SELECT * FROM item_k WHERE ItemID='" +intGetRequest+ "'", searchCon))

thanks,

flag

70% accept rate
what RDBMS are you using? – Mitch Wheat May 24 at 14:58
sorry, Ms sql server! – pier May 24 at 15:06

2 Answers

vote up 1 vote down check

You have not specified which RDBMS you are using.

If you are using SQL Server, this will return N random rows:

SELECT TOP N    
    SomeColumn 
FROM     
    SomeTable
ORDER BY     
    CHECKSUM(NEWID())
link|flag
I didnt get your code! I need to get the itemIDs as well as other values. – pier May 24 at 15:09
So SELECT TOP N * FROM item_k ORDER BY CHECKSUM(NEWID()), no?! – Alex Martelli May 24 at 15:25
Thank you! It worked fine. :) – pier May 24 at 16:36
vote up 2 vote down

Is the itemID column in the database, a contiguous list of numbers ?

If so, you can just do...

Random r = new Random();
int x = r.Next(1, MAX_ID_FROM_DB);
link|flag

Your Answer

Get an OpenID
or

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