Jump to content

Order by... yet still group somehow?


Lashiec

Recommended Posts

I have a table, it has users in it, a column named admin and the value for each user is either Y or N. What I wanted to do was have one query that would take all the information I needed and put it into one array based on the users being admins (Y) and at the same time take all the other users (N) and put them in another array...

 

Something like:

 

(admin = Y)

[.0] -> [.0] -> user 1

        [1] -> user 2

        [2] -> user 3

(admin = N)

[1] -> [.0] -> user 4

        [1] -> user 5

 

So that when I get the data back from the database I can loop through all the admins and put them in one list and then loop through all the non-admins and put them in a list. Currently I just do a query, order it by admin, then take the entire return and run it through a loop and checks if each user is an admin or not and puts them into appropriate arrays according to that.

 

It's not a problem really, I only have a few users for each installation of this program, but I was wondering if there was a more advanced / better way of obtaining the same results straight from the database.

Link to comment
https://forums.phpfreaks.com/topic/149057-order-by-yet-still-group-somehow/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.