Challenge - 5 Problems
Collection Runner Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
❓ query_result
intermediate2:00remaining
What is the total number of requests run in this collection?
Given a collection runner result summary, determine the total number of requests executed.
Postman
SELECT COUNT(*) AS total_requests FROM collection_runner_results;
Attempts:
2 left
💡 Hint
Look for the total count of requests executed in the results table.
✗ Incorrect
The collection runner summary shows 15 requests were executed in total.
📝 Syntax
intermediate2:00remaining
Identify the syntax error in this query to fetch failed requests
Find the syntax error in the following SQL query that tries to select all failed requests from collection runner results.
Postman
SELECT * FROM collection_runner_results WHERE status = 'failed';Attempts:
2 left
💡 Hint
Check if the query follows standard SQL syntax.
✗ Incorrect
The query is syntactically correct and will run without errors.
❓ optimization
advanced2:00remaining
Optimize this query to get average response time per request name
Given this query, choose the optimized version that efficiently calculates average response time grouped by request name.
Postman
SELECT request_name, AVG(response_time) FROM collection_runner_results GROUP BY request_name;
Attempts:
2 left
💡 Hint
Use built-in aggregate functions with proper grouping.
✗ Incorrect
Option A uses AVG with GROUP BY correctly and is the most efficient and clear.
🧠 Conceptual
advanced2:00remaining
What does the 'iterations' field represent in collection runner results?
In the context of Postman collection runner results, what does the 'iterations' field represent?
Attempts:
2 left
💡 Hint
Think about how many times the whole set of requests is executed.
✗ Incorrect
Iterations count how many times the entire collection was executed during the run.
🔧 Debug
expert2:00remaining
Why does this query return zero rows when filtering by status 'passed'?
Given the query: SELECT * FROM collection_runner_results WHERE status = 'passed'; but it returns zero rows, what is the most likely cause?
Postman
SELECT * FROM collection_runner_results WHERE status = 'passed';Attempts:
2 left
💡 Hint
Check the exact stored values and case sensitivity.
✗ Incorrect
If status values are uppercase, filtering by lowercase 'passed' returns no rows.