0

こんにちは、この問題の正しいカウントを取得できません。姓や名が異なる重複したメールの数を取得しようとしています。(つまり、123@.com sam 123@.com ben その重複した電子メールの数が必要です) 私は 2 つのテーブルで作業しています。email_address は mrtcustomer.customer_email テーブルにあり、姓名は mrtcustomer.customer_master テーブルにあります

私のコード

SELECT COUNT(*)
FROM
(SELECT e.customer_master_id, email_address, customer_first_name, customer_last_name, 
ROW_NUMBER() OVER (PARTITION BY EMAIL_ADDRESS ORDER BY CUSTOMER_FIRST_NAME) RN
FROM mrtcustomer.customer_email e 
JOIN mrtcustomer.customer_master t ON e.customer_master_id = t.customer_master_id
WHERE t.customer_first_name IS NOT NULL 
AND t.customer_last_name IS NOT NULL 
AND customer_FIRST_NAME != 'Unknown' 
AND customer_LAST_NAME != 'Unknown' 
GROUP BY e.customer_master_id, email_address, customer_first_name, customer_last_name 
ORDER BY 1 DESC) 
WHERE RN > 1

私のWHERE句が間違っていると思います。

4

2 に答える 2

1

私はこのようなものから始めます: (編集を反映するように編集)

select email_address
    , count( distinct customer_first_name ) f
    , count( distinct customer_last_name ) l
from customer_email e, customar_master m
where e.customer_master_id = m.customer_master_id
group by email_address

次に、名前列のいずれかが > 1 の場合、問題があります。次のようにラップします。

select email_address from
(
select email_address
    , count( distinct customer_first_name ) f
    , count( distinct customer_last_name ) l
from customer_email e, customar_master m
where e.customer_master_id = m.customer_master_id
group by email_address
)
where fn > 1 or ln > 1
于 2013-05-08T20:16:25.030 に答える
0

個別の fname、lname、email レコードを識別し、次に電子メールでグループ化 (複数のレコードを持つ) し、それを数えます。


-- count
SELECT COUNT(DISTINCT email_address)
FROM 
(
    -- group by email , find where there is more than one distinct record for each email
    SELECT email_address
    FROM 
    (
        -- get distinct Fname, Lname, Email combinations in derived table
        SELECT customer_first_name , customer_last_name, email_address
        FROM mrtcustomer.customer_email 
        JOIN mrtcustomer.customer_master t ON e.customer_master_id = t.customer_master_id
        WHERE t.customer_first_name IS NOT NULL 
        AND t.customer_last_name IS NOT NULL 
        AND customer_FIRST_NAME != 'Unknown' 
        AND customer_LAST_NAME != 'Unknown' 
        GROUP BY 1,2,3
    )  foo
    GROUP BY 1
HAVING COUNT(*)>1
)  bar

于 2013-05-08T20:28:37.967 に答える