如图,如何用sql语句实现字段1按升序重新排列

2024-11-23 11:53:16
推荐回答(1个)
回答1:

select * from 表名 order by 字段1
或者
select * from 表名 order by 字段1 asc

都可以,不过千万级数据,速度不会太快