I have an easy question. I need to add a secondary key to an SQL table. How would I do this? I'm a AS400 programmer so this is work in progress for me. I am using MS Access to import data into the table and view the SQL tables. Please help. Thanks.
It's in Books Online under [Create Index] but here's a quick example for what you want to do...
CREATE UNIQUE NONCLUSTERED INDEX index_name
ON tablename (columnlist)
--Jeff Moden
RBAR is pronounced "ree-bar" and is a "Modenism" for Row-By-Agonizing-Row. First step towards the paradigm shift of writing Set Based code: ________Stop thinking about what you want to do to a ROW... think, instead, of what you want to do to a COLUMN.
Change is inevitable... Change for the better is not.