Daily MySQL Coding Challenge

Sharpen your programming skills by solving a new MySQL coding problem everyday!

Ends In: --:--:--
Solution Available In: --:--:--
Jul
24
2026
Easy 50 Points

MySQL Filter Active Records

Write a SQL query to select name and email from users table where status = 1.

Input Format

No input.

Output Format

SQL query statement.

Constraints

Use WHERE clause.

Examples

Example 1:
Output:
SELECT name, email FROM users WHERE status = 1;
Explanation: Selects active users
MySQL
Theme:
Console Output
Press 'Run Code' to execute your program against the sample test cases.
Enter Submission Details
Hints Available
  1. SELECT column1, column2 FROM table WHERE condition;
Challenge Completed!
🎉
🚀
🔥
🌟
🎊
🏆
✨ Daily Coding Challenge ✨
🎉 SUCCESSFULLY SOLVED 🎉
User Name
from Location
MySQL Filter Active Records
Success Card
Generating your shareable success card...
Official Solution
Go Back Top