Table number
contains many numbers in column num including duplicated ones.
Can you write a SQL query to find the biggest number, which only appears once.
1 | +---+ |
For the sample data above, your query should return the following result:
1 | +---+ |
Note:
- If there is no such number, just output
null
.
1 | # Write your MySQL query statement below |