bretticus, thank you,
This does ORDER BY Flagged bringing it up first
But Name is not being ordered.
Which I think is due to the joins in the " Color" and "Style" table with a main "Members" table.
'Color' table
CID | ColorHex
'Style' table
styleID | fk_MemID | Flagged | Name
'Member' table
MemID
Would SELECT MAX help ORDER BY on styleID ?
LEFT JOIN Color on Color.CID=Style.Name
WHERE Style.fk_MemID=Member.MemID
ORDER BY Style.Flagged DESC, Style.Name