<?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: Selecting Observations from One Table Not In Another in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457570#M70141</link>
    <description>Appreciate your help. I got the following when submitting the code. I checked column 6 in both tables and they're both character, 1 length.  Thank you.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;WARNING: A table has been extended with null columns to perform the EXCEPT set operation.&lt;BR /&gt;ERROR: Column 6 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Numeric expression requires a numeric format.&lt;BR /&gt;ERROR: Column 8 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Numeric expression requires a numeric format.&lt;BR /&gt;ERROR: Column 16 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Column 52 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Column 53 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Numeric expression requires a numeric format.&lt;BR /&gt;ERROR: Column 57 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Column 58 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Numeric expression requires a numeric format.&lt;BR /&gt;ERROR: Column 59 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Column 60 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Numeric expression requires a numeric format.&lt;BR /&gt;ERROR: Column 66 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;103  quit;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;      real time           0.03 seconds&lt;BR /&gt;&lt;BR /&gt;      cpu time            0.01 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 25 Apr 2018 23:07:18 GMT</pubDate>
    <dc:creator>jcis7</dc:creator>
    <dc:date>2018-04-25T23:07:18Z</dc:date>
    <item>
      <title>Selecting Observations from One Table Not In Another</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457537#M70130</link>
      <description>&lt;P&gt;G'day.&lt;/P&gt;
&lt;P&gt;I have two tables, Table A and Table B.&lt;/P&gt;
&lt;P&gt;Table A doesn't have any duplicate idcodes.&amp;nbsp; Neither does Table B.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Both tables have the same variable names and types.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I&amp;nbsp; need to extract only the information from Table B that wasn't in Table A based on idcode to create Table C.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The&amp;nbsp;following variables are character:&amp;nbsp; idcode, Name and Status.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following variables are numeric: &amp;nbsp;Enrollment and utd.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;TableA&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;U&gt;idcode&amp;nbsp;&amp;nbsp; Name&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;Status&amp;nbsp;&amp;nbsp; Enrollment&amp;nbsp;&amp;nbsp;utd&amp;nbsp;&lt;/U&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;12345&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BusyBees&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 100&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; 89&lt;/P&gt;
&lt;P&gt;12342&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Little Sprouts&amp;nbsp;&amp;nbsp;&amp;nbsp;Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;23&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;22&lt;/P&gt;
&lt;P&gt;12347&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Generations&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;5&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;5&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;TableB&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;U&gt;&lt;STRONG&gt;idcode&amp;nbsp;&amp;nbsp;&amp;nbsp; Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status&amp;nbsp;&amp;nbsp; Enrollment&amp;nbsp;utd&lt;/STRONG&gt;&lt;/U&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;12342&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Little Sprouts&amp;nbsp;&amp;nbsp;&amp;nbsp;Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;23&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;22&lt;/P&gt;
&lt;P&gt;12347&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Generations&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;5&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;5&lt;/P&gt;
&lt;P&gt;12341&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Kidz First&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;15&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; 11&lt;/P&gt;
&lt;P&gt;12231&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BrightHorizon&amp;nbsp; Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 44&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;32&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to create:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;TableC&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;U&gt;idcode&amp;nbsp;&amp;nbsp;&amp;nbsp; Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status&amp;nbsp;&amp;nbsp; Enrollment&amp;nbsp;utd&lt;/U&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;12341&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Kidz First&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;15&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; 11&lt;/P&gt;
&lt;P&gt;12231&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BrightHorizon&amp;nbsp; Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 44&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;32&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help you can give is appreciated!&amp;nbsp; Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 21:39:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457537#M70130</guid>
      <dc:creator>jcis7</dc:creator>
      <dc:date>2018-04-25T21:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Observations from One Table Not In Another</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457549#M70133</link>
      <description>Hi, My tendency would be to use a MERGE, although you could use an SQL join too.&lt;BR /&gt;&lt;BR /&gt;I like the merge approach because I could get all the matches and non-matches with one pass through the data.&lt;BR /&gt;&lt;BR /&gt;cynthia</description>
      <pubDate>Wed, 25 Apr 2018 22:17:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457549#M70133</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-04-25T22:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Observations from One Table Not In Another</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457551#M70134</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data t1;
input idcode   Name  &amp;amp; $20.             Status  $ Enrollment  utd ;
datalines;
12345     BusyBees        Y         100              89
12342     Little Sprouts   Y          23               22
12347     Generations    Y           5                5
;
 

 

 data t2;
 input idcode    Name  &amp;amp; $20.           Status  $  Enrollment utd;
 datalines;
12342     Little Sprouts   Y          23                22
12347     Generations    Y           5                 5
12341     Kidz First         Y          15               11
12231     BrightHorizon  Y          44               32
;

proc sql;
create table want as
select *
from t2
where idcode not in (select idcode from t1);
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 25 Apr 2018 22:21:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457551#M70134</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-04-25T22:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Observations from One Table Not In Another</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457556#M70137</link>
      <description>&lt;P&gt;Assuming you description is correct then something like this is one way:&lt;/P&gt;
&lt;PRE&gt;proc sql;
   create table want as 
   select * from tableb
   except 
   select * from tablea
   ;
quit;&lt;/PRE&gt;
&lt;P&gt;Note that if there are variables in only one of the tables that aren't in the other or if the type is different than this will not work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 22:39:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457556#M70137</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-04-25T22:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Observations from One Table Not In Another</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457570#M70141</link>
      <description>Appreciate your help. I got the following when submitting the code. I checked column 6 in both tables and they're both character, 1 length.  Thank you.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;WARNING: A table has been extended with null columns to perform the EXCEPT set operation.&lt;BR /&gt;ERROR: Column 6 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Numeric expression requires a numeric format.&lt;BR /&gt;ERROR: Column 8 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Numeric expression requires a numeric format.&lt;BR /&gt;ERROR: Column 16 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Column 52 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Column 53 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Numeric expression requires a numeric format.&lt;BR /&gt;ERROR: Column 57 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Column 58 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Numeric expression requires a numeric format.&lt;BR /&gt;ERROR: Column 59 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Column 60 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;ERROR: Numeric expression requires a numeric format.&lt;BR /&gt;ERROR: Column 66 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt;       the second.&lt;BR /&gt;103  quit;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;      real time           0.03 seconds&lt;BR /&gt;&lt;BR /&gt;      cpu time            0.01 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Apr 2018 23:07:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457570#M70141</guid>
      <dc:creator>jcis7</dc:creator>
      <dc:date>2018-04-25T23:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Observations from One Table Not In Another</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457572#M70142</link>
      <description>Thank you everyone!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Apr 2018 23:09:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457572#M70142</guid>
      <dc:creator>jcis7</dc:creator>
      <dc:date>2018-04-25T23:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Observations from One Table Not In Another</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457576#M70144</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/40498"&gt;@jcis7&lt;/a&gt; wrote:&lt;BR /&gt;Appreciate your help. I got the following when submitting the code. I checked column 6 in both tables and they're both character, 1 length. Thank you.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;WARNING: A table has been extended with null columns to perform the EXCEPT set operation.&lt;BR /&gt;ERROR: Column 6 from the first contributor of EXCEPT is not the same type as its counterpart from&lt;BR /&gt; the second.&lt;BR /&gt;ERROR: Numeric expression requires a numeric format.&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;And HOW did you check that the column 6 matched? Did you use the names of your data sets? Where there is a message about "extended with null" columns one of the sets has more variables than the other. Notice that I did mention the variables had to match...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that this works where we have known data:&lt;/P&gt;
&lt;PRE&gt;data t1;
input idcode   Name  &amp;amp; $20.             Status  $ Enrollment  utd ;
datalines;
12345     BusyBees        Y         100              89
12342     Little Sprouts   Y          23               22
12347     Generations    Y           5                5
;

 data t2;
 input idcode    Name  &amp;amp; $20.           Status  $  Enrollment utd;
 datalines;
12342     Little Sprouts   Y          23                22
12347     Generations    Y           5                 5
12341     Kidz First         Y          15               11
12231     BrightHorizon  Y          44               32
;

proc sql;
   create table want as
   select * from t2
   except
   select * from t1
   ;
quit;&lt;/PRE&gt;</description>
      <pubDate>Wed, 25 Apr 2018 23:39:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457576#M70144</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-04-25T23:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Observations from One Table Not In Another</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457580#M70145</link>
      <description>I see. Thank you.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Apr 2018 23:46:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Selecting-Observations-from-One-Table-Not-In-Another/m-p/457580#M70145</guid>
      <dc:creator>jcis7</dc:creator>
      <dc:date>2018-04-25T23:46:18Z</dc:date>
    </item>
  </channel>
</rss>

