<?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: SAS Enterprise Guide Left Join in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/SAS-Enterprise-Guide-Left-Join/m-p/616515#M18922</link>
    <description>&lt;P&gt;Thank you, this is great!&amp;nbsp; However, I was hoping for a solution in EG, not code, which I know would be difficult to illustrate here. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp; but I think I'll "cheat" and build the code in EG.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 10 Jan 2020 15:43:20 GMT</pubDate>
    <dc:creator>dxtran</dc:creator>
    <dc:date>2020-01-10T15:43:20Z</dc:date>
    <item>
      <title>SAS Enterprise Guide Left Join</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Enterprise-Guide-Left-Join/m-p/616500#M18915</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I'm refreshing my knowledge on SAS EG.&amp;nbsp; I have table A that contains a list of all employees since the beginning of time and table B that has a list of all employees who terminated.&amp;nbsp; I want to keep only employees from A who are still with the company.&amp;nbsp; I can do this in Access with a left join A to B on EmpID where B.EmpID is null (Pictorially).&amp;nbsp; I don't know how to do this in EG once I do a left join.&amp;nbsp; How/where do I set the condition B.EmpID is null?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2020 15:11:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Enterprise-Guide-Left-Join/m-p/616500#M18915</guid>
      <dc:creator>dxtran</dc:creator>
      <dc:date>2020-01-10T15:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide Left Join</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Enterprise-Guide-Left-Join/m-p/616502#M18916</link>
      <description>&lt;P&gt;I would use a set operator for this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql; 

create table want as 
select * from a 
   except 
   select * from b; 

quit; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 10 Jan 2020 15:16:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Enterprise-Guide-Left-Join/m-p/616502#M18916</guid>
      <dc:creator>JeffMaggio</dc:creator>
      <dc:date>2020-01-10T15:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide Left Join</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Enterprise-Guide-Left-Join/m-p/616515#M18922</link>
      <description>&lt;P&gt;Thank you, this is great!&amp;nbsp; However, I was hoping for a solution in EG, not code, which I know would be difficult to illustrate here. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp; but I think I'll "cheat" and build the code in EG.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2020 15:43:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Enterprise-Guide-Left-Join/m-p/616515#M18922</guid>
      <dc:creator>dxtran</dc:creator>
      <dc:date>2020-01-10T15:43:20Z</dc:date>
    </item>
  </channel>
</rss>

