Table: `Employee`
```
+-------------+------+
| Column Name | Type |
+-------------+------+
| id | int |
| salary | int |
+-------------+------+
```
Write an SQL query to report the second highest distinct salary from the `Employee` table. If there is no second highest salary, the query should report `null` (or `NULL` in SQL).