Return a smaller projection.
Section: Read and filter rows
Select only needed columns
sql
sql
SELECT id, email, created_at FROM users;Explanation
Fetching only the columns you need reduces transfer and simplifies downstream code.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Read and filter rows