hi
i have a table full of quotes.
i want to get 1 randomly and order by quote asc.
so, i tried this
select * from quotes order by rand() and quote asc ; -> it didn't work
select * from quotes order by rand() order by quote asc; -> it didnt work
please help me out here. thanks.