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
↧