sequelize 排序字段null时排序 Sequelize降序排序空值在后面 order: [ ['last_access_timed_at', 'DESC NULLS LAST'], ] Sequelize升序排序空值在前面 order: [ ['last_access_timed_at', 'ASC NULLS FIRST'], ] 同理DESC,ASC,FIRST,LAST自由组合。