If I have a bunch of categories like so:
Category ID | Category
----------------|-------------
1 Apples
2 Pears
3 Firemen
4 New York
5 Peaches
6 Seeds
etc...
and I want to do a query like so:
$query = "select * from category order by Category";
It will obviously list them in alphabetical order like:
Apples
Firemen
New York
Peaches
Pears
Seeds
Within the query is there a way to pull out a certain on and list is first like so:
Seeds
Apples
Firemen
New York
Peaches
Pears
So Seeds is listed First with a simple query something like:
$query = "select * from category order by Category, Seeds First";
I know this isn't right, but is there a way to do something like that?