<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: find out Duplicate Emails in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/find-out-Duplicate-Emails/m-p/494350#M130249</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table want as select count(email) as cnt, email from have group by email having count(email)&amp;gt;1;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 11 Sep 2018 00:51:16 GMT</pubDate>
    <dc:creator>Jagadishkatam</dc:creator>
    <dc:date>2018-09-11T00:51:16Z</dc:date>
    <item>
      <title>find out Duplicate Emails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/find-out-Duplicate-Emails/m-p/494345#M130247</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;to find all duplicate emails in a table with data step.&lt;/P&gt;&lt;PRE&gt;+----+---------+
| Id | Email   |
+----+---------+
| 1  | a@b.com |
| 2  | c@d.com |
| 3  | a@b.com |
+----+---------+&lt;/PRE&gt;&lt;P&gt;For example, your query should return the following for the above table:&lt;/P&gt;&lt;PRE&gt;+---------+
| Email   |
+---------+
| a@b.com |
+---------+&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Sep 2018 23:53:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/find-out-Duplicate-Emails/m-p/494345#M130247</guid>
      <dc:creator>ccnky123</dc:creator>
      <dc:date>2018-09-10T23:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: find out Duplicate Emails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/find-out-Duplicate-Emails/m-p/494349#M130248</link>
      <description>&lt;P&gt;data have;&lt;BR /&gt;input&lt;BR /&gt;Id Email $;&lt;BR /&gt;cards;&lt;BR /&gt;1 a@b.com&lt;BR /&gt;2 c@d.com&lt;BR /&gt;3 a@b.com&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;proc sort data=have;&lt;BR /&gt;by email;&lt;BR /&gt;run;&lt;BR /&gt;data want;&lt;BR /&gt;set have;&lt;BR /&gt;by email;&lt;BR /&gt;if not last.email;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 00:46:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/find-out-Duplicate-Emails/m-p/494349#M130248</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2018-09-11T00:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: find out Duplicate Emails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/find-out-Duplicate-Emails/m-p/494350#M130249</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table want as select count(email) as cnt, email from have group by email having count(email)&amp;gt;1;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Sep 2018 00:51:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/find-out-Duplicate-Emails/m-p/494350#M130249</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2018-09-11T00:51:16Z</dc:date>
    </item>
  </channel>
</rss>

