Is there a syntax for SELECTing INTO a table where the new table has a clustered index?
Instead of two separate commands like:
SELECT Col1, Col2, Colx INTO NewTable
CREATE CLUSTERED INDEX NewTableClus ON NewTable (Colx)
If so, does this provide a performance enhancement over the two command syntax especially when NewTable is a #Temp table?
Once you understand the BITs, all the pieces come together