在Cassandra中查找重复的行

时间:2016-03-10 21:07:53

标签: cassandra cassandra-2.1

我有一张表格如下:

CREATE TABLE xyz (
    id text,
    profile_name text,
    cret_dt timestamp,
    cret_id text,
PRIMARY KEY(id, profile));

它也有一些数据。

现在,当我运行此查询时:

select id  from xyz ; 

返回165行

同样,当我运行此查询时:

select distinct id  from xyz ;

它返回162行。

有没有办法找出重复的3行?

0 个答案:

没有答案