Currently I am doing a very basic OrderBy in my statement.
SELECT * FROM tablename WHERE visible=1 ORDER BY position ASC, id DESC
The probl
I found this to be a good solution for the most part:
SELECT * FROM table ORDER BY ISNULL(field), field ASC;