select blah, blah, blah order by fldRecur , case fldRecur when 1 then fld_order_timestamp when 0 then fldCreateTimeStamp end; The above works, however what I really want is fld_order_timestamp desc and fldCreateTimeStamp asc. I cannot seem to make that part work. Help?
got it! order by fldRecur , case fldRecur when 1 then fld_order_timestamp end desc , case fldRecur when 0 then fldCreateTimeStamp end asc