我需要一些SQL排序查询创建的帮助。比如
ref_num
24534535_R
11789999_S
34543049_S
23476243_R
45737458_S
我需要根据最后一个字符串(先R,然后S)对数据进行排序
如何使用postgresql排序?
我尝试使用子字符串,但仍然不工作
您应该能够使用right(string text, n integer) → text
:
select * from some_table order by right(ref_num, 1);