SELECT *
FROM MyTable WITH (INDEX(0))
WHERE MyIndexedColumn = 0
Query would normally use the index on MyIndexedColumn, but due to the table hint, it will instead tablescan.
SELECT *
FROM MyTable WITH (INDEX(IndexName))
WHERE MyIndexedColumn = 0
Query would normally use the index on MyIndexedColumn, but due to the table hint, it will instead use the index named IndexName.