Skip to content
Advertisement

Get random rows if full text result is less than N rows

I am using below code to find something

If there are titles that match my query, It returns 25 rows. If the row is empty or if less than 25 rows I want to get random 25 rows from table. Is it possible in a single query?

Advertisement

Answer

Instead, use order by and limit:

Note that this could be much more expensive, depending on the size of your data because the entire table needs to be sorted.

A more efficient method would be:

This limits the overall sorting to at most 50 records. Like your original query, it does not guarantee the highest scoring titles will be returned.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement