Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Managing Test Results and Logs
00:00
5 left

Managing Test Results and Logs

MediumSQL · PostgreSQL

Problem

What strategies do you use to manage, update, and interpret large databases of test results and log files?

For this SQL exercise, summarize test executions and their associated log records for January 2025. Include only test suites with at least one failed execution.

Output

  1. One row per qualifying test suite with suite_name, total_executions, failed_executions, executions_with_errors, and total_log_entries.
  2. Include executions without matching logs, exclude executions outside January 2025, and sort by suite_name ascending.

Schema

test_results
ColumnTypeDescription
test_result_idPKINTUnique test-result identifier
execution_idVARCHAR(30)Identifier shared by a test execution and its logs
suite_nameVARCHAR(100)Name of the test suite
statusVARCHAR(20)Execution status
executed_atTIMESTAMPTimestamp when the test execution completed
log_files
ColumnTypeDescription
log_idPKINTUnique log-record identifier
execution_idVARCHAR(30)Related test execution identifier
severityVARCHAR(20)Log severity level
log_messageTEXTCaptured log message
Tablestest_resultslog_files
Interviewer

Your question is Managing Test Results and Logs. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.