mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
<p>Table: <code>Person</code></p>
|
|
|
|
<pre>
|
|
+-------------+---------+
|
|
| Column Name | Type |
|
|
+-------------+---------+
|
|
| id | int |
|
|
| email | varchar |
|
|
+-------------+---------+
|
|
id is the primary key (column with unique values) for this table.
|
|
Each row of this table contains an email. The emails will not contain uppercase letters.
|
|
</pre>
|
|
|
|
<p> </p>
|
|
|
|
<p>Write a solution to<strong> delete</strong> all duplicate emails, keeping only one unique email with the smallest <code>id</code>.</p>
|
|
|
|
<p>For SQL users, please note that you are supposed to write a <code>DELETE</code> statement and not a <code>SELECT</code> one.</p>
|
|
|
|
<p>For Pandas users, please note that you are supposed to modify <code>Person</code> in place.</p>
|
|
|
|
<p>After running your script, the answer shown is the <code>Person</code> table. The driver will first compile and run your piece of code and then show the <code>Person</code> table. The final order of the <code>Person</code> table <strong>does not matter</strong>.</p>
|
|
|
|
<p>The result format is in the following example.</p>
|
|
|
|
<p> </p>
|
|
<p><strong class="example">Example 1:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong>
|
|
Person table:
|
|
+----+------------------+
|
|
| id | email |
|
|
+----+------------------+
|
|
| 1 | john@example.com |
|
|
| 2 | bob@example.com |
|
|
| 3 | john@example.com |
|
|
+----+------------------+
|
|
<strong>Output:</strong>
|
|
+----+------------------+
|
|
| id | email |
|
|
+----+------------------+
|
|
| 1 | john@example.com |
|
|
| 2 | bob@example.com |
|
|
+----+------------------+
|
|
<strong>Explanation:</strong> john@example.com is repeated two times. We keep the row with the smallest Id = 1.
|
|
</pre>
|