<?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 select from full sample all the obs except those in subsample A with sql in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/select-from-full-sample-all-the-obs-except-those-in-subsample-A/m-p/292957#M270137</link>
    <description>&lt;P&gt;Dear all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How could I select all the other observations from the full sample except all those observations in subsapmle A with proc sql?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
    <pubDate>Sun, 21 Aug 2016 07:57:51 GMT</pubDate>
    <dc:creator>owenwqp1</dc:creator>
    <dc:date>2016-08-21T07:57:51Z</dc:date>
    <item>
      <title>select from full sample all the obs except those in subsample A with sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/select-from-full-sample-all-the-obs-except-those-in-subsample-A/m-p/292957#M270137</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How could I select all the other observations from the full sample except all those observations in subsapmle A with proc sql?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Sun, 21 Aug 2016 07:57:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/select-from-full-sample-all-the-obs-except-those-in-subsample-A/m-p/292957#M270137</guid>
      <dc:creator>owenwqp1</dc:creator>
      <dc:date>2016-08-21T07:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: select from full sample all the obs except those in subsample A with sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/select-from-full-sample-all-the-obs-except-those-in-subsample-A/m-p/292959#M270138</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
 create table Sample_Remaining as
 select *
 from Full_Sample
 where Row_ID not in (select Row_ID from Sub_Sample)
 ;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This assumes you have a column called Row_ID that uniquely identifies each row in your full sample data. If you don't have such a column you can easily add one yourself.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Aug 2016 08:36:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/select-from-full-sample-all-the-obs-except-those-in-subsample-A/m-p/292959#M270138</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2016-08-21T08:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: select from full sample all the obs except those in subsample A with sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/select-from-full-sample-all-the-obs-except-those-in-subsample-A/m-p/292961#M270139</link>
      <description>Thank you so much SASKiwi, you're so helpful!</description>
      <pubDate>Sun, 21 Aug 2016 08:47:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/select-from-full-sample-all-the-obs-except-those-in-subsample-A/m-p/292961#M270139</guid>
      <dc:creator>owenwqp1</dc:creator>
      <dc:date>2016-08-21T08:47:42Z</dc:date>
    </item>
  </channel>
</rss>

