I\'m using SQLite in an Android application. In all of my tables I have a default row with an index of 0 that holds default values for that table. In most situations
Try this:
ORDER BY CASE epoch_date.epoch WHEN 0 THEN 1 ELSE 0 END, epoch_date.epoch
I haven't tested in SQLite but works in many other databases so hopefully it should work in SQLite too.