Write a SQL query to summarize pass/fail results by tester and date.
Use the test_results table. Include only rows with a non-null tester, a non-null test date, and a result of pass or fail. Rows with null tester names, null dates, or other result values must be ignored.
tester_name, test_date, pass_count, fail_count, and total_tests.tester_name ascending, then test_date ascending.| Column | Type | Description |
|---|---|---|
| result_idPK | INT | Unique identifier for the test result |
| tester_name | VARCHAR(50) | Name of the tester who ran the test |
| test_date | DATE | Date on which the test was run |
| result | VARCHAR(30) | Outcome of the test execution |