It appears that I can create an index with included columns on a table when the database is in 80 (SQL 2000) compatibility mode on SQL Server 2005. For example:
CREATE INDEX [MyIndex] ON [dbo].[MyTable] ([MyColumn]) INCLUDE ([MyCol2], [MyCol3])
Does anyone know if SQL Server will use the index and included columns when the database is in 80 compatibility?