SQL Server normally handles ‘old-style’ join syntax quite well in most cases. However, in certain scenarios, the use of an ‘unqualified’ join syntax can cause poor query performance. select a.id, substring(b.name,1,40) as 'table name', count(colid ...
↧