↧
Answer by Lajos Veres for Postgresql - ORDER BY random() but also sort by id?
Maybe like this?select * from (select * from ... order by random() limit 10 )order by id
View ArticlePostgresql - ORDER BY random() but also sort by id?
is it possible to order by random, and then order by an id?In other words - can I tell to postgresql that it should return 10 random elements, but also give it out by sorting by the id column?Right now...
View Article