oracle distinct 多列
时间: 2023-11-11 16:58:42 浏览: 80
oracle中distinct的用法详解
可以使用以下语法在 Oracle 中对多列进行去重:
```
SELECT DISTINCT column1, column2, column3, ...
FROM table_name;
```
其中,`column1`, `column2`, `column3` 等为需要去重的列名,`table_name` 为需要查询的表名。
例如,对于一个名为 `employees` 的表,其中包含 `id`, `name`, `department` 三列,如果需要对 `name` 和 `department` 进行去重,可以使用以下 SQL 语句:
```
SELECT DISTINCT name, department
FROM employees;
```
阅读全文