标签:需要 esc color des 信息 出版 -- date order by
处理爬虫程序的时候,需要对书籍信息的出版日期,爬取优先级同时进行排序----即order by后面加两个字段。
order by后面加两个字段,用英文逗号隔开
若出版日期pubdate升序,优先级降序
order by pubdate,priority DESC
若出版日期,优先级都降序,需要这样写
order by priority DESC,pubdate DESC
标签:需要 esc color des 信息 出版 -- date order by
原文地址:https://www.cnblogs.com/taoHongFei/p/9238875.html