<?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 7613130380 - What is the syntax of left outer join and inner join in SAS without using SQL? in Programming 1 and 2</title>
    <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671387#M555</link>
    <description>Hi:&lt;BR /&gt;  We revised Programming 1 and Programming 2 several years ago. The old version of Programming 1 with 11 chapters is no longer in sync with the certification exam. You should focus on the new version of Programming 1 and Programming 2. The old version of Programming 2 was also revised. Even if you can't take Programming 2 for free, you can get the Practice Exam for free and you can use the newest Prep Guide to prepare for the certification exam or study Programming 1 and Programming 2 concepts in a condensed form.&lt;BR /&gt;  Also many countries have discounts for students. In the US, we have discounts for students and veterans and active military; in addition some companies have training discounts. &lt;BR /&gt;  And, if none of that works out, you can look for papers on the topics covered in Programming 2 such as: functions, formats, do loops, merge, retain, SUM statement, BY Group processing, output control, such as described here: &lt;A href="https://support.sas.com/edu/schedules.html?ctry=us&amp;amp;crs=PROG2#s1=3" target="_blank"&gt;https://support.sas.com/edu/schedules.html?ctry=us&amp;amp;crs=PROG2#s1=3&lt;/A&gt; .&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Cynthia</description>
    <pubDate>Wed, 22 Jul 2020 14:14:26 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2020-07-22T14:14:26Z</dc:date>
    <item>
      <title>SAS 7613130380 - What is the syntax of left outer join and inner join in SAS without using SQL?</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671242#M546</link>
      <description>&lt;P&gt;Hello team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can someone tell me how to do joins (Left Outer Join, Inner Join) in SAS without using SQL?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;GN&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 00:03:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671242#M546</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2020-07-22T00:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 7613130380 - What is the syntax of left outer join and inner join in SAS without using SQL?</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671246#M547</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;&amp;nbsp; You will learn about SAS and the MERGE statement in the Programming 2 course. Are you in Programming 1 or Programming 2? The question you asked previously was in relation to the Programming 1 class. Are you working in Programming 1 in the Lesson on SQL? If so, what example are you asking about?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If you're just curious, here are some resources you might find enlightening:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings09/036-2009.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings09/036-2009.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings12/251-2012.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings12/251-2012.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.lexjansen.com/nesug/nesug08/ff/ff03.pdf" target="_blank"&gt;https://www.lexjansen.com/nesug/nesug08/ff/ff03.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 00:38:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671246#M547</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-07-22T00:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 7613130380 - What is the syntax of left outer join and inner join in SAS without using SQL?</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671262#M548</link>
      <description>&lt;P&gt;Inner&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data innerJoin;
merge table1 (in=A) table2 (in=B);
by ID:

if A &amp;amp; B;

run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Outer Left Join&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data outerLeft;
merge table1 (in=A) table2 (in=B);
by ID;

if A;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202329"&gt;@GN0001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can someone tell me how to do joins (Left Outer Join, Inner Join) in SAS without using SQL?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;GN&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 01:55:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671262#M548</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-07-22T01:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 7613130380 - What is the syntax of left outer join and inner join in SAS without using SQL?</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671275#M550</link>
      <description>Hello Reeza,&lt;BR /&gt;&lt;BR /&gt;Thanks for the response!&lt;BR /&gt;What determines the left join or inner join?&lt;BR /&gt;&lt;BR /&gt;if A &amp;amp; B?&lt;BR /&gt;&lt;BR /&gt;I appreciate your response.&lt;BR /&gt;&lt;BR /&gt;Respectfully,&lt;BR /&gt;Guity&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jul 2020 03:44:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671275#M550</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2020-07-22T03:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 7613130380 - What is the syntax of left outer join and inner join in SAS without using SQL?</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671276#M551</link>
      <description>Hello Cynthia,&lt;BR /&gt;I needed it and somehow due to some curiosity.&lt;BR /&gt;I don't know if I can learn programming 2 for free. The e-learning used to&lt;BR /&gt;have 11 sessions.&lt;BR /&gt;&lt;BR /&gt;Respectfully,&lt;BR /&gt;Guity&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jul 2020 03:48:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671276#M551</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2020-07-22T03:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 7613130380 - What is the syntax of left outer join and inner join in SAS without using SQL?</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671387#M555</link>
      <description>Hi:&lt;BR /&gt;  We revised Programming 1 and Programming 2 several years ago. The old version of Programming 1 with 11 chapters is no longer in sync with the certification exam. You should focus on the new version of Programming 1 and Programming 2. The old version of Programming 2 was also revised. Even if you can't take Programming 2 for free, you can get the Practice Exam for free and you can use the newest Prep Guide to prepare for the certification exam or study Programming 1 and Programming 2 concepts in a condensed form.&lt;BR /&gt;  Also many countries have discounts for students. In the US, we have discounts for students and veterans and active military; in addition some companies have training discounts. &lt;BR /&gt;  And, if none of that works out, you can look for papers on the topics covered in Programming 2 such as: functions, formats, do loops, merge, retain, SUM statement, BY Group processing, output control, such as described here: &lt;A href="https://support.sas.com/edu/schedules.html?ctry=us&amp;amp;crs=PROG2#s1=3" target="_blank"&gt;https://support.sas.com/edu/schedules.html?ctry=us&amp;amp;crs=PROG2#s1=3&lt;/A&gt; .&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Cynthia</description>
      <pubDate>Wed, 22 Jul 2020 14:14:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671387#M555</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-07-22T14:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 7613130380 - What is the syntax of left outer join and inner join in SAS without using SQL?</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671443#M558</link>
      <description>Yes. If you're studying for the certification exams, I highly recommend reading through this section of the documentation. It's a great overview on the various ways to 'combine' files.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://documentation.sas.com/?docsetId=lrcon&amp;amp;docsetTarget=p0sz8gq6nvzcojn13pcqe3twvg1d.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=lrcon&amp;amp;docsetTarget=p0sz8gq6nvzcojn13pcqe3twvg1d.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;</description>
      <pubDate>Wed, 22 Jul 2020 15:56:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671443#M558</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-07-22T15:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 7613130380 - What is the syntax of left outer join and inner join in SAS without using SQL?</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671475#M559</link>
      <description>Thanks,&lt;BR /&gt;I will if I want to go deeper into it.&lt;BR /&gt;Guity&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jul 2020 17:17:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671475#M559</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2020-07-22T17:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 7613130380 - What is the syntax of left outer join and inner join in SAS without using SQL?</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671480#M561</link>
      <description>&lt;P&gt;Hello Reeza,&lt;/P&gt;
&lt;P&gt;I already have a certificate. I have not used SAS in the job market. I am refreshing my knowledge.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Guity&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 17:25:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671480#M561</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2020-07-22T17:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 7613130380 - What is the syntax of left outer join and inner join in SAS without using SQL?</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671481#M562</link>
      <description>&lt;P&gt;Hello Cynthia,&lt;/P&gt;
&lt;P&gt;This is a very good source. Thanks for sharing.&lt;/P&gt;
&lt;P&gt;GN&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 17:26:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-7613130380-What-is-the-syntax-of-left-outer-join-and-inner/m-p/671481#M562</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2020-07-22T17:26:22Z</dc:date>
    </item>
  </channel>
</rss>

