I have a table with 2 text-blurbs in it. I need the data to populate in a rotating-like fashion. You, see I set it up to pull randomly.. but now they don't like random. So, how can I set this up to pull sequentially? So, every query will pull 1, then 2, then 1, then 2... etc.
Here's what i'm doing currently
Here's what i'm doing currently
SELECT TOP 1 PromoBlurb.PInfo
FROM PromoBlurb
ORDER BY Rnd(PromoID);