I was wondering how sql server sorts it\'s data.
I noticed that if I have a table that doesn\'t contain the column \"Id\" and you select data without \"ORDER BY\" sql server
AS SQL is based on Set thoery and Set does not guarantee any order, thus if you don't specify a particular order explicityly, order will not be guaranteed.