Impala - 不同算子



Impala 中的distinct 算子用于通过删除重复项来获取唯一值。

语法

以下是distinct 算子的语法。

select distinct columns… from table_name;

示例

假设我们在 Impala 中有一个名为customers 的表,其内容如下 -

[quickstart.cloudera:21000] > select distinct id, name, age, salary from customers; 
Query: select distinct id, name, age, salary from customers

在这里,你可以看到 Rames 和 Chaitali 的薪资输入了两次,并且可以使用distinct 算子选择唯一值,如下所示。

[quickstart.cloudera:21000] > select distinct name, age, address from customers;

在执行时,上述查询给出以下输出。

Query: select distinct id, name from customers
+----------+-----+-----------+ 
| name     | age | address   | 
+----------+-----+-----------+ 
| Ramesh   | 32  | Ahmedabad |
| Khilan   | 25  | Delhi     | 
| kaushik  | 23  | Kota      | 
| Chaitali | 25  | Mumbai    |
| Hardik   | 27  | Bhopal    |
| Komal    | 22  | MP        | 
+----------+-----+-----------+
Fetched 9 row(s) in 1.46s
广告