<?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: Joining 2 tables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166922#M32150</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data Facility;&lt;/P&gt;&lt;P&gt; infile cards dlm='|';&lt;/P&gt;&lt;P&gt;input County :$50. Facility :$50. ;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;Alameda|Happy Days&lt;/P&gt;&lt;P&gt;Contra Costa|Sunshine Daycare&lt;/P&gt;&lt;P&gt;Contra Costa|BusyBees&lt;/P&gt;&lt;P&gt;Inyo|Elmwood Montessori&lt;/P&gt;&lt;P&gt;San Joaquin|Buzy Beez&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; data contacts;&lt;/P&gt;&lt;P&gt;&amp;nbsp; infile cards dlm='|';&lt;/P&gt;&lt;P&gt;&amp;nbsp; input County :$50. Email :$50.;&amp;nbsp; &lt;/P&gt;&lt;P&gt;cards; &lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:Alameda|hamwood@alameda.gov"&gt;Alameda|hamwood@alameda.gov&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:Alameda|stern@alameda.gov"&gt;Alameda|stern@alameda.gov&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Contra &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:Costa|lily@cc.gov"&gt;Costa|lily@cc.gov&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:Inyo|sch@iy.com"&gt;Inyo|sch@iy.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:Inyo|tom@iy.com"&gt;Inyo|tom@iy.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;San &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:Joaquin|kj1@sq.gov"&gt;Joaquin|kj1@sq.gov&lt;/A&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table want as&lt;/P&gt;&lt;P&gt;select f.county,f.facility,c.email from facility f inner join contacts c&lt;/P&gt;&lt;P&gt;on f.county=c.county;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Feb 2014 17:51:58 GMT</pubDate>
    <dc:creator>pradeepalankar</dc:creator>
    <dc:date>2014-02-07T17:51:58Z</dc:date>
    <item>
      <title>Joining 2 tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166921#M32149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Appreciate any help you can give.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one table with facility names and some county names named Facility&lt;/P&gt;&lt;P&gt;I have another table with all county names and email addresses named Contacts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Facility table has only some county names listed in the Contacts Table so I need ultimately the email addresses from the Contacts table for only the county names listed in the Facility Table.&lt;/P&gt;&lt;P&gt;The Facility Table has the county names listed more than once since more than one Facility is listed per county.&lt;/P&gt;&lt;P&gt;The Contacts Table has the county name listed more than once because there's more than one contact for some counties.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I get the email addresses for only the counties listed in the Facility Table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Facility Table&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;County&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Facility&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Alameda&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Happy Days&lt;/P&gt;&lt;P&gt;Contra Costa&amp;nbsp; Sunshine Daycare&lt;/P&gt;&lt;P&gt;Contra Costa&amp;nbsp;&amp;nbsp; BusyBees&lt;/P&gt;&lt;P&gt;Inyo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Elmwood Montessori&lt;/P&gt;&lt;P&gt;San Joaquin&amp;nbsp;&amp;nbsp;&amp;nbsp; Buzy Beez&lt;/P&gt;&lt;P&gt;etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Contacts Table&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; County&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Email Address&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; Alameda&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="mailto:hamwood@alameda.gov"&gt;hamwood@alameda.gov&lt;/A&gt;&lt;/P&gt;&lt;P&gt; Alameda&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="mailto:stern@alameda.gov"&gt;stern@alameda.gov&lt;/A&gt;&lt;/P&gt;&lt;P&gt; Contra Costa&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A class="active_link" href="mailto:lily@cc.gov"&gt;lily@cc.gov&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; Inyo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:sch@iy.com"&gt;sch@iy.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Inyo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:tom@iy.com"&gt;tom@iy.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;San Joaquin&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="mailto:kj1@sq.gov"&gt;kj1@sq.gov&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 15:52:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166921#M32149</guid>
      <dc:creator>jcis7</dc:creator>
      <dc:date>2014-02-07T15:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166922#M32150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data Facility;&lt;/P&gt;&lt;P&gt; infile cards dlm='|';&lt;/P&gt;&lt;P&gt;input County :$50. Facility :$50. ;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;Alameda|Happy Days&lt;/P&gt;&lt;P&gt;Contra Costa|Sunshine Daycare&lt;/P&gt;&lt;P&gt;Contra Costa|BusyBees&lt;/P&gt;&lt;P&gt;Inyo|Elmwood Montessori&lt;/P&gt;&lt;P&gt;San Joaquin|Buzy Beez&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; data contacts;&lt;/P&gt;&lt;P&gt;&amp;nbsp; infile cards dlm='|';&lt;/P&gt;&lt;P&gt;&amp;nbsp; input County :$50. Email :$50.;&amp;nbsp; &lt;/P&gt;&lt;P&gt;cards; &lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:Alameda|hamwood@alameda.gov"&gt;Alameda|hamwood@alameda.gov&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:Alameda|stern@alameda.gov"&gt;Alameda|stern@alameda.gov&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Contra &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:Costa|lily@cc.gov"&gt;Costa|lily@cc.gov&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:Inyo|sch@iy.com"&gt;Inyo|sch@iy.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:Inyo|tom@iy.com"&gt;Inyo|tom@iy.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;San &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:Joaquin|kj1@sq.gov"&gt;Joaquin|kj1@sq.gov&lt;/A&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table want as&lt;/P&gt;&lt;P&gt;select f.county,f.facility,c.email from facility f inner join contacts c&lt;/P&gt;&lt;P&gt;on f.county=c.county;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 17:51:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166922#M32150</guid>
      <dc:creator>pradeepalankar</dc:creator>
      <dc:date>2014-02-07T17:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166923#M32151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Get rid of duplicate county records:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;sql&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;select&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; f.county&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , c.email&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; contacts c&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;inner&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;join&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ( &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;select&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;distinct&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; county&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; facility ) &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; f&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; on c.county = f.county&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;quit&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 20:27:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166923#M32151</guid>
      <dc:creator>Fugue</dc:creator>
      <dc:date>2014-02-07T20:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166924#M32152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;This worked great after adding an 'as' after 'contacts'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question:&amp;nbsp; what does the phrase 'inner join' tell sas to do?&amp;nbsp; join the contacts table with the newly made table f?&lt;/P&gt;&lt;P&gt;why is it sometimes you can ask sas to do an inner join in sql without specifying 'inner join' but for this you have to?&amp;nbsp; Is it because there&lt;/P&gt;&lt;P&gt;is a subquery?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 15:42:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166924#M32152</guid>
      <dc:creator>jcis7</dc:creator>
      <dc:date>2014-02-13T15:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166925#M32153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The term inner join implies that you only want to keep all of the records which match in both tables. When I read your query it looked like you wanted a table with all of the facilities and all of the email addresses that you could match, rather than only those which were in both tables. The way that the example code was shown implied that you had an email address for every county, but my guess is that you do not. If this was what you wanted then you should specify left rather than inner join with the facility table being specified first in your statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Feb 2014 20:46:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166925#M32153</guid>
      <dc:creator>overmar</dc:creator>
      <dc:date>2014-02-15T20:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Joining 2 tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166926#M32154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A __default_attr="812342" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;"why is it sometimes you can ask sas to do an inner join in sql without specifying 'inner join' but for this you have to?"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is just SQL syntax allowing you to code an inner join implicit or explicit. Below how it would look like implicit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp; select f.county&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; , c.email&lt;/P&gt;&lt;P&gt;&amp;nbsp; from &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; contacts as c&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ( select distinct county&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from facility ) as f&lt;/P&gt;&lt;P&gt;&amp;nbsp; where c.county = f.county&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Feb 2014 23:28:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Joining-2-tables/m-p/166926#M32154</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2014-02-15T23:28:24Z</dc:date>
    </item>
  </channel>
</rss>

