<?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: Alias in Proc sql join: in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Alias-in-Proc-sql-join/m-p/162994#M42298</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam&lt;/P&gt;&lt;P&gt;I believe you're now at the point where you should do some research, read some docu and do some experimenting on your own first.&lt;/P&gt;&lt;P&gt;5 seconds of Googling: &lt;A href="http://en.wikipedia.org/wiki/Alias_(SQL"&gt;http://en.wikipedia.org/wiki/Alias_(SQL&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Dec 2013 21:47:43 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2013-12-04T21:47:43Z</dc:date>
    <item>
      <title>Alias in Proc sql join:</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Alias-in-Proc-sql-join/m-p/162991#M42295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;proc sql;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;create table dem1 as&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;select&lt;STRONG&gt; ex.*,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;case when ex.dafl is null then adverse.dafl else ex.dafl end as date1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;case when ex.tfl is null then adverse.tfl else ex.tfl end as time1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;case when ex.pidno is null then adverse.pidno else ex.pidno end as acc1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;case when ex.folder is null then adverse.folder else ex.folder end as lbn1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;from &lt;STRONG style="font-family: 'Arial','sans-serif';"&gt;dem ex&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;left join&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;(&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;select t1.usubjid,t1.visitnum,rsn,t1.subev,t1.visitd,t2.dafl,t2.tfl,t2.pidno,t2.folder&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;from&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;(select usubjid,visitnum,visitd,rsn,subev from dem where rsn&amp;gt;1) t1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;join (select usubjid,visitnum,visitd,dafl,tfl,subev,pidno,folder from dem where rsn=1) t2&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;on t1.usubjid = t2.usubjid and t1.visitnum = t2.visitnum and t1.visitd = t2.visitd and t1.subev = t2.subev) adverse&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;on ex.usubjid = adverse.usubjid and ex.visitnum = adverse.visitnum and ex.visitd = adverse.visitd and ex.rsn = adverse.rsn and ex.subev = adverse.subev&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;I was wondering if I can write the code in following ways? (the differences are highlighted in bold).&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;1st way:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;proc sql;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;create table dem1 as&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;select&lt;STRONG&gt; dem.*,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;case when ex.dafl is null then adverse.dafl else ex.dafl end as date1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;case when ex.tfl is null then adverse.tfl else ex.tfl end as time1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;case when ex.pidno is null then adverse.pidno else ex.pidno end as acc1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;case when ex.folder is null then adverse.folder else ex.folder end as lbn1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;from &lt;STRONG&gt;dem &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;left join&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;(select t1.usubjid,t1.visitnum,rsn,t1.subev,t1.visitd,t2.dafl,t2.tfl,t2.pidno,t2.folder&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;from&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;(select usubjid,visitnum,visitd,rsn,subev from dem where rsn&amp;gt;1) t1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;join (select usubjid,visitnum,visitd,dafl,tfl,subev,pidno,folder from dem where rsn=1) t2&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;on t1.usubjid = t2.usubjid and t1.visitnum = t2.visitnum and t1.visitd = t2.visitd and t1.subev = t2.subev) adverse&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;on ex.usubjid = adverse.usubjid and ex.visitnum = adverse.visitnum and ex.visitd = adverse.visitd and ex.rsn = adverse.rsn and ex.subev = adverse.subev&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; background-color: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&lt;BR /&gt; 2nd way:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; proc sql;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&amp;nbsp; create table t1 as &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&amp;nbsp; select usubjid,visitnum,visitd,rsn,subev from dem&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; where rsn&amp;gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;create table t2 as&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;select usubjid,visitnum,visitd,dafl,tfl,subev,pidno,folder from dem &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;where rsn=1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&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 style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&amp;nbsp; create table adverse as &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;select * from&amp;nbsp;&amp;nbsp; t1 inner join t2&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;on t1.usubjid = t2.usubjid and t1.visitnum = t2.visitnum and t1.visitd = t2.visitd and t1.subev = t2.subev;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Proc sql;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;create table dem1 as&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;select dem.*,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;from &lt;STRONG style="font-family: 'Arial','sans-serif';"&gt;dem &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;left join &lt;STRONG&gt;adverse&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;on ex.usubjid = adverse.usubjid and ex.visitnum = adverse.visitnum and ex.visitd = adverse.visitd and ex.rsn = adverse.rsn and ex.subev = adverse.subev&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proc sql;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;create table dem2 as&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;select dem1.*,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;case when dem.dafl is null then adverse.dafl else dem.dafl end as date1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;case when dem.tfl is null then adverse.tfl else dem.tfl end as time1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;case when dem.pidno is null then adverse.pidno else dem.pidno end as acc1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;case when dem.folder is null then adverse.folder else dem.folder end as lbn1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 21:09:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Alias-in-Proc-sql-join/m-p/162991#M42295</guid>
      <dc:creator>sampath</dc:creator>
      <dc:date>2013-12-03T21:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Alias in Proc sql join:</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Alias-in-Proc-sql-join/m-p/162992#M42296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you try, run the different code versions and compare the results?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 21:21:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Alias-in-Proc-sql-join/m-p/162992#M42296</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-12-03T21:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Alias in Proc sql join:</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Alias-in-Proc-sql-join/m-p/162993#M42297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Patrick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to understand the concept of alias in sql. I would like to get the some suggestions of experts before I try it myself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 15:59:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Alias-in-Proc-sql-join/m-p/162993#M42297</guid>
      <dc:creator>sampath</dc:creator>
      <dc:date>2013-12-04T15:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: Alias in Proc sql join:</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Alias-in-Proc-sql-join/m-p/162994#M42298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam&lt;/P&gt;&lt;P&gt;I believe you're now at the point where you should do some research, read some docu and do some experimenting on your own first.&lt;/P&gt;&lt;P&gt;5 seconds of Googling: &lt;A href="http://en.wikipedia.org/wiki/Alias_(SQL"&gt;http://en.wikipedia.org/wiki/Alias_(SQL&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 21:47:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Alias-in-Proc-sql-join/m-p/162994#M42298</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-12-04T21:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: Alias in Proc sql join:</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Alias-in-Proc-sql-join/m-p/162995#M42299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Patrick. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 23:13:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Alias-in-Proc-sql-join/m-p/162995#M42299</guid>
      <dc:creator>sampath</dc:creator>
      <dc:date>2013-12-04T23:13:17Z</dc:date>
    </item>
  </channel>
</rss>

