Hi,
I have a simple table view with BannerID, Image, Link. I only want to disply one record randomly every time the browser refreshes. Here's what I have:
SELECT
BannerID,
Link,
Image
FROM banners
ORDER BY RAND() LIMIT 1
In the result tab of the query page, it works great, but on my list page, I get all the records still.
Any thoughts?
Thanks,
Marty