Sequence NODE_282
Easy

Select Specific Columns with WHERE Filter

SQL
Technical Specification

Select only name and email from users table where is_active = true.

Input/Output Samples
Input:users where is_active = 1
Output:name, email only
Optimal Logic Path
SELECT 
  name,
  email
FROM users
WHERE is_active = 1;
Architectural Deep-Dive
Selecting only specific columns reduces data transfer and increases performance.