Selecting Specific Columns
Often, you don't need every column in a table. You can specify exactly which columns you want to retrieve.
SELECT name, email FROM users;
This is better for performance and readability.
Task:
Modify the query to select only the name and role of all users.