Skip to the content.

When using a literal top value, that value should be positive.

Bad:

select top 0 Id, Name
from Users

Good:

select top 10 Id, Name
from Users