我使用了以下sql,它的工作正常,但是我也需要排序空字符串。请给我指导。
SELECT id,first_name,last_name FROM users ORDER BY first_name DESC NULLS LAST limit 10;
使用一些
conditional functions,例如
原文链接:https://www.f2er.com/postgresql/192968.htmlORDER BY NULLIF(first_name,'') DESC NULLS LAST