<?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: Merge vs SQL Left Join in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/391882#M11905</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN class="login-bold"&gt;&lt;A id="link_8" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://communities.sas.com/t5/user/viewprofilepage/user-id/52588" target="_self"&gt;Ujjawal&lt;/A&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;This other similar question you asked on the community will help here:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Data-Management/PROC-SQL-Joins-on-3-Tables/m-p/196808#M4324" target="_blank"&gt;https://communities.sas.com/t5/SAS-Data-Management/PROC-SQL-Joins-on-3-Tables/m-p/196808#M4324&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;Here's the solution from &lt;SPAN class=""&gt;&lt;A id="link_14" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://communities.sas.com/t5/user/viewprofilepage/user-id/54879" target="_self"&gt;SteveED&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;on the above-mentioned thread:&lt;/SPAN&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976" target="_blank"&gt;@SASKiwi&lt;/A&gt;&amp;nbsp;gives a good example of a 3 table join.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The example&amp;nbsp;&lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/52588" target="_blank"&gt;@Ujjawal&lt;/A&gt;&amp;nbsp;gave though is for a match-merge which would generate (potentially) different results.&amp;nbsp;&lt;A href="http://www2.sas.com/proceedings/sugi30/249-30.pdf" target="_self" rel="nofollow noopener noreferrer"&gt;HERE&lt;/A&gt;&amp;nbsp;is a link to a SUGI 30 paper highlighting the differences (there are many other papers as well). &amp;nbsp;There are reasons to use the different types of merge/joins depending on the need.&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;Anna&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Dec 2017 14:58:34 GMT</pubDate>
    <dc:creator>AnnaBrown</dc:creator>
    <dc:date>2017-12-13T14:58:34Z</dc:date>
    <item>
      <title>Merge vs SQL Left Join</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168054#M3234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two data sets. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID Name Height&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;1 A 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;3 B 2&lt;/P&gt;&lt;P&gt;5 C 2&lt;/P&gt;&lt;P&gt;7 D 2&lt;/P&gt;&lt;P&gt;9 E 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID Name Height&lt;/P&gt;&lt;P&gt;2 A 2&lt;/P&gt;&lt;P&gt;4 B 3&lt;/P&gt;&lt;P&gt;5 C 4&lt;/P&gt;&lt;P&gt;7 D 5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am merging them using MERGE and SQL Left Join. MERGE returns correct matching value for same values in the common variable (Primary Key) , while SQL left join does not update values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data A;&lt;/P&gt;&lt;P&gt;Input ID Name$ Height;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;1 A 1&lt;/P&gt;&lt;P&gt;3 B 2&lt;/P&gt;&lt;P&gt;5 C 2&lt;/P&gt;&lt;P&gt;7 D 2&lt;/P&gt;&lt;P&gt;9 E 2&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;Data B;&lt;/P&gt;&lt;P&gt;Input ID Name$ Height;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;2 A 2&lt;/P&gt;&lt;P&gt;4 B 3&lt;/P&gt;&lt;P&gt;5 C 4&lt;/P&gt;&lt;P&gt;7 D 5&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;PROC SQL;&lt;/P&gt;&lt;P&gt;Create table dummy as&lt;/P&gt;&lt;P&gt;Select * from A as file1 left join B as file2&lt;/P&gt;&lt;P&gt;On file1.ID = file2.ID;&lt;/P&gt;&lt;P&gt;Quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC SQL returns :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID Name Height&lt;/P&gt;&lt;P&gt;1 A 1&lt;/P&gt;&lt;P&gt;3 B 2&lt;/P&gt;&lt;P&gt;5 C 2&lt;/P&gt;&lt;P&gt;7 D 2&lt;/P&gt;&lt;P&gt;9 E 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data dummy;&lt;/P&gt;&lt;P&gt;merge A (IN=A) B (IN=B);&lt;/P&gt;&lt;P&gt;by ID;&lt;/P&gt;&lt;P&gt;If A;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MERGE returns :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID Name Height&lt;/P&gt;&lt;P&gt;1 A 1&lt;/P&gt;&lt;P&gt;3 B 2&lt;/P&gt;&lt;P&gt;5 C 4&lt;/P&gt;&lt;P&gt;7 D 5&lt;/P&gt;&lt;P&gt;9 E 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why PROC SQL LEFT JOIN does not update common values?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Jul 2014 20:03:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168054#M3234</guid>
      <dc:creator>Ujjawal</dc:creator>
      <dc:date>2014-07-06T20:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: Merge vs SQL Left Join</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168055#M3235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your SQL you're joining 2 tables with common variable names (other than the one you join on). If you execute such code you will see below warnings in your code:&lt;/P&gt;&lt;P&gt;WARNING: Variable ID already exists on file WORK.DUMMY.&lt;/P&gt;&lt;P&gt;WARNING: Variable Name already exists on file WORK.DUMMY.&lt;/P&gt;&lt;P&gt;WARNING: Variable Height already exists on file WORK.DUMMY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the SAS SQL flavor a "select *" will take the variable from the first table and ignore the one from the second table (that's what the warning tells you) - other SQL flavors (eg. Oracle) would throw an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With a SAS Merge the last listed same named variable will overwrite the same named variable from a table listed earlier in the merge statement. That's why in this case you're getting the values from table 'B'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Jul 2014 22:24:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168055#M3235</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2014-07-06T22:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Merge vs SQL Left Join</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168056#M3236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is difference in data step and sql processing. Data merging works sequentially checks each observation of each data set to match these by BY value to write it to combined dataset and same name variables in the first data set are overwritten with the liked named variable in subsequent data sets . SQL processing is based on cartesian product where processing moves horizontally and same name variables coming from different data sets can not be overwritten.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Jul 2014 22:50:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168056#M3236</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-07-06T22:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Merge vs SQL Left Join</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168057#M3237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you like SQL, try this one :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;Data A;
Input ID Name$ Height;
cards;
1 A 1
3 B 2
5 C 2
7 D 2
9 E 2
;
run;
 
Data B;
Input ID Name$ Height;
cards;
2 A 2
4 B 3
5 C 4
7 D 5
;
run;

PROC SQL;
Create table dummy as
Select file1.ID,file1.Name,coalesce(file2.Height,file1.Height) as Height from A as file1 left join B as file2
On file1.ID = file2.ID and file1.name = file2.name;
Quit;
&lt;/PRE&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;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2014 12:33:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168057#M3237</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-07-07T12:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: Merge vs SQL Left Join</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168058#M3238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using PROC SQL, how do I overwrite the height value without creating a new variable and then dropping the existing and renaming the new to existing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;PROC SQL;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Create table dummy as&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Select *&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , case when NAME = 'A' then 5 else 6 end as height&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;from A as file1 left join B as file2 On file1.ID = file2.ID;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 03:34:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168058#M3238</guid>
      <dc:creator>hellind</dc:creator>
      <dc:date>2015-07-21T03:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Merge vs SQL Left Join</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168059#M3239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should really create a new topic rather than replying to an old post.&amp;nbsp; For your question, the reason you are getting a new variable at the end is because you are using the * notation.&amp;nbsp; This selects all variables.&amp;nbsp; If you write SQL correctly, then you would specify each variable in the select, where you want it to appear, its attributes, and what data to collect, e.g.&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table WANT as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.FIRST_VARIABLE as FIRST_VARIABLE,&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.NEW_VARIABLE as SECOND_VARIABLE,&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case&amp;nbsp; when A.TEST_VAR=1 then 'Found'&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;&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;&amp;nbsp;&amp;nbsp; else&amp;nbsp;&amp;nbsp; 'Not Found' end as THIRD_VARIABLE length=20,&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.LAST_VAR as FOURTH_VARIABLE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HAVE A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; left join&amp;nbsp;&amp;nbsp; HAVE2 B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; on&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.VAR=B.VAR;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 08:45:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168059#M3239</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-07-21T08:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Merge vs SQL Left Join</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168060#M3240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah. Start a new session. and Post some sample data and the output you want , that would be better to explain your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 11:42:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/168060#M3240</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-07-21T11:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Merge vs SQL Left Join</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/391882#M11905</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN class="login-bold"&gt;&lt;A id="link_8" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://communities.sas.com/t5/user/viewprofilepage/user-id/52588" target="_self"&gt;Ujjawal&lt;/A&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;This other similar question you asked on the community will help here:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Data-Management/PROC-SQL-Joins-on-3-Tables/m-p/196808#M4324" target="_blank"&gt;https://communities.sas.com/t5/SAS-Data-Management/PROC-SQL-Joins-on-3-Tables/m-p/196808#M4324&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;Here's the solution from &lt;SPAN class=""&gt;&lt;A id="link_14" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://communities.sas.com/t5/user/viewprofilepage/user-id/54879" target="_self"&gt;SteveED&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;on the above-mentioned thread:&lt;/SPAN&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976" target="_blank"&gt;@SASKiwi&lt;/A&gt;&amp;nbsp;gives a good example of a 3 table join.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The example&amp;nbsp;&lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/52588" target="_blank"&gt;@Ujjawal&lt;/A&gt;&amp;nbsp;gave though is for a match-merge which would generate (potentially) different results.&amp;nbsp;&lt;A href="http://www2.sas.com/proceedings/sugi30/249-30.pdf" target="_self" rel="nofollow noopener noreferrer"&gt;HERE&lt;/A&gt;&amp;nbsp;is a link to a SUGI 30 paper highlighting the differences (there are many other papers as well). &amp;nbsp;There are reasons to use the different types of merge/joins depending on the need.&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;Anna&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 14:58:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Merge-vs-SQL-Left-Join/m-p/391882#M11905</guid>
      <dc:creator>AnnaBrown</dc:creator>
      <dc:date>2017-12-13T14:58:34Z</dc:date>
    </item>
  </channel>
</rss>

