You are given a table containing a list of integers. Some numbers are repeated. Your goal is to find the second largest number among those that appear only once in the table.
| num(INTEGER) |
|---|
| 8 |
| 8 |
| 7 |
| 3 |
| 1 |
| 4 |
| 4 |
| 5 |
| num(INTEGER) | source(VARCHAR) |
|---|---|
| 8 | Batch A |
| 7 | Batch B |
| log_id(INTEGER) | num(INTEGER) | entry_time(TIMESTAMP) |
|---|---|---|
| 101 | 8 | 2026-02-09 10:00:00 |
| second_biggest(INTEGER) |
|---|
| 5 |