Quantcast
Channel: SQLServerCentral » SQL Server 2014 » Development - SQL Server 2014 » Latest topics
Viewing all articles
Browse latest Browse all 3145

WildCard vs all Columns listing - Performance difference

$
0
0
1. If you need all the rows in a table, which provides a lower execution cost?Selecting * from a particular table that is well indexed (SELECT * FROM tbEmployees) ORSpecifically selecting each column (SELECT fname, lname, deptId FROM tbEmployees):smooooth:- f

Viewing all articles
Browse latest Browse all 3145

Trending Articles