As a follow up to: http://stackoverflow.com/questions/105400/what-are-indexes-and-how-can-i-use-them-to-optimize-queries-in-my-database where I am attempting to learn about indexes, what columns are good index candidates?, specifically for an mssql database?
After some googling, everything I have read suggests that columns that are generally increasing and unique make a good index (things like mysql's auto_increment), I understand this, but I am using mssql and I am using GUIDS for primary keys, so it seems that indexes would not benefit GUID columns...
Thanks.