Jump to content

[SOLVED] Random Select


scottybwoy

Recommended Posts

Yes your right, however

 

SELECT TOP 1 modelId, purchasing, image FROM products AS r1

JOIN (SELECT ROUND(RAND() * (SELECT MAX(id) FROM products), 1) AS id) AS r2

WHERE r1.id >= r2.id

ORDER BY r1.id ASC

 

Returns an error of incorrect syntax near the keyword 'WHERE'.

 

Can you see what the error is, excuse my lack of knowledge on the complexity of this use of SQL, still a newb.

 

Thanks

 

By the way I added a 1 to Round()

Link to comment
Share on other sites

Got it!  I used :

 

SELECT TOP 1 modelId, purchasing, image FROM products AS r1

JOIN (SELECT ROUND(

RAND() * (

SELECT MAX(products.rrp) FROM products

), 1

) AS id

) AS r2 ON r1.rrp >= r2.id AND endOfLine != 'TRUE'

ORDER BY r1.rrp ASC

 

Problem was using a varchar as a handle wen it needed a float.

 

May I also ask where you source info like this?  Thanks for your help

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.