I don't know how SQL Server does its magic on the inside. I was wondering how much a difference these queries would make:
and:
Does it optimize the query in some way that it knows what you're trying to do?
Code:
SELECT *
FROM
(
[tab]SELECT *
[tab]FROM [SomeTable]
)
and:
Code:
SELECT *
FROM [SomeTable]
Does it optimize the query in some way that it knows what you're trying to do?