The CUST table below will be joined with ~10 tables.
For this subquery in particular, am I better off simply joining up directly with the Customer table and moving the subquery's 4-part WHERE clause to the main query's WHERE clause?
I'm primarily wondering if it is possible to cut down on the amount of processing that SQL Server has to do if we localize portions of the master WHERE Clause by creating subqueries as below.
select * From
(select CKey, CID, CName from MainDB.dbo.Customer
where
LOC = 'ARK'
and Status = 1
and CID not like 'KAN%'
and CID not like 'MIS%') as CUST