# Distinct Clause

DISTINCT clause is used to remove duplicates from the result set of a SELECT statement.

```
select payment_method from orders
```

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1659335278577/ZyNpRos_u.png align="left")

```
select distinct(payment_method) from orders
```

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1659335307179/RDK_XNmF2.png align="left")

