1. Generating a SELECT query
Data AnalystBackground
Need to extract specific user information from a database table.
Problem
Writing the correct syntax for a filtered SELECT statement.
How to use
Select 'SELECT', enter 'users' as the table name, specify 'id, name, email' as columns, and add 'status = 'active'' in the WHERE clause.
Outcome
The tool outputs: SELECT id, name, email FROM users WHERE status = 'active';