Is a table intrinsically sorted by it\'s primary key? If I have a table with the primary key on a BigInt identity column can I trust that queries will always return the dat
Almost everytime it will sort by the tables Identity. It does sort by the clustered index as and may not always be sorted by the identity, but I've never seen it not sorted by the identity id when selecting *. What's the reason behind not specifying an order by? I don't see why it causes a difference in performance.