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
This is working fine:
SELECT * FROM tablename ORDER BY position = 0, position ASC;
position 1 2 3 0 0