I have a table with the following columns: ClientID, Amount, etc. The problem is that some clients have two or more rows with Amount = 0, and I want to remove these rows. I've searched some information but only found with unique identification.
Sample input:
| ClientID | Amount |
|---|---|
| QER1 | 531 |
| QER2 | 521 |
| QER3 | 0 |
| QER4 | 231 |
| QER2 | 0 |
| QER1 | 0 |
Expected Output:
| ClientID | Amount |
|---|---|
| QER1 | 531 |
| QER2 | 521 |
| QER3 | 0 |
| QER4 | 231 |