第一列排序是通过公式得到的,我设置左父格为C2,结果排序还是乱的,请问要怎么设置呢?
另外,如何只显示前5列呢?
选中单元格:
oracle:select * from table1 where rownum<=5
mysql:select * from table1 where 1=1 limit 5
sql server:读取前10条:select top (5) * from table1 where 1=1