Skip to content
Advertisement

PHP query first shuffle their data by USER IDs, then shuffle the rest of the data

I will list sample blog posts. There are editors who write these blog posts. I am listing these blog posts randomly. I want the blog posts belonging to the ids of the editors in the $onlineeditor directory to be sorted randomly first, and then the blog posts that do not have the editors id in $onlineeditor to be sorted randomly. How can I do that?

id user_id
1 100
2 105
3 145
4 155
5 187
6 200
7 210
JavaScript

I want the query output to be like this

random { blog id: 3, 1, 5}

random { blog id: 7, 2, 5, 6, 4}

Advertisement

Answer

in PHP:

JavaScript

then, in SQL:

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