|
> select * from table 获得的记录顺序是什么样的呢
Whatever order the server process (shadow process) reads the blocks. If the blocks happen to be adjacent on the disk, and the rows happened to be inserted in those blocks sequentially, the query output will show the rows in the original order (unless you do parallel scan).
Yong Huang |
|