数据排序 数据排序按某一列排序teledb=# create table teledb_pg(id int, nickname text); CREATE TABLE teledb=# insert into teledb_pg values(1,'teledb'),(3,'pg'),(1,'hello,pgxc'); COPY 3 teledb=# select * from teledb_pg order by nickname; id | nickname ----+------------ 1 |