Julia conducted a
Write a query to print total number of unique hackers who made at least
The Hackers table is described as follows:
| Column | Type |
|---|---|
| hacker_id | Integer |
| name | String |
The
hacker_idis the id of the hacker, andnameis the name of the hacker.
The Submissions table is described as follows:
| Column | Type |
|---|---|
| submission_date | Date |
| submission_id | Integer |
| hacker_id | Integer |
| score | Integer |
The
submission_dateis the date of the submission,submission_idis the id of the submission,hacker_idis the id of the hacker who made the submission, andscoreis the score of the submission.