I have a list of categories ordered alphabetically but I want to be able to specify a single category to be included last is it possible to do this with MySQL?
for example
current output:
a
b
c
d
e
f
g
h
desired output:
b
c
d
e
f
g
a
Current MySQL code.
SELECT * FROM categories ORDER BY parent_id, category ASC