How to select FirstName from Customers?
To retrieve only the FirstName column from the Customers table, use the standard SELECT projection statement:
SELECT FirstName
FROM Customers;
### Performance Best Practice:
Always select specific column names instead of using SELECT *. Explicit column projection:
- Reduces network transfer bandwidth between the database server and application.
- Decreases application server memory usage during row hydration.
- Allows database engines to leverage Covering Indexes, satisfying queries entirely in-memory from the index tree without scanning table row pages.