There is a table simplified with the following fields: id, status, date .
You must select all fields with status = new at the beginning, and sort all remaining fields by date . If possible, a solution is desirable through the ORDER BY construct.
ORDER BY status='new' DESC, date- Akina