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
https://forums.phpfreaks.com/topic/74440-solved-random-select/#findComment-376120
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
https://forums.phpfreaks.com/topic/74440-solved-random-select/#findComment-376172
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.