I have a table named Scan
that has just two columns: id (int)
and a (char)
.
It starts without any index. So I created a nonclustered index link following
CREATE INDEX ix_id ON scan(id ASC)
So I ran this select:
SELECT id, a
FROM Scan
WHERE id = 1
and this is the execution plan:
Why did I get a Key Lookup (clustered) if my table doesn't have any clustered index?