<?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 where clause in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/where-clause/m-p/744592#M233279</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi Guys&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here difference output with Where&amp;nbsp; Clause&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select * from sashelp.class
where name like 'Alfred %' ;
quit;

proc sql;
select * from sashelp.class;
where Name ='Alfred';
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 29 May 2021 08:27:36 GMT</pubDate>
    <dc:creator>BrahmanandaRao</dc:creator>
    <dc:date>2021-05-29T08:27:36Z</dc:date>
    <item>
      <title>where clause</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-clause/m-p/744592#M233279</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi Guys&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here difference output with Where&amp;nbsp; Clause&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select * from sashelp.class
where name like 'Alfred %' ;
quit;

proc sql;
select * from sashelp.class;
where Name ='Alfred';
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 29 May 2021 08:27:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-clause/m-p/744592#M233279</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2021-05-29T08:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: where clause</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-clause/m-p/744594#M233281</link>
      <description>&lt;P&gt;Maxim 2: Read the Log.&lt;/P&gt;
&lt;PRE&gt; 74         proc sql;
 75         select * from sashelp.class;
 76         where Name ='Alfred';
 WARNING: This SAS global statement is not supported in PROC SQL. It has been ignored.
 77         quit;&lt;/PRE&gt;
&lt;P&gt;What does it tell you?&lt;/P&gt;
&lt;LI-SPOILER&gt;The semicolon after SASHELP.CLASS terminates the SELECT, causing WHERE to become a separate statement.&lt;/LI-SPOILER&gt;</description>
      <pubDate>Sat, 29 May 2021 08:36:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-clause/m-p/744594#M233281</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-05-29T08:36:01Z</dc:date>
    </item>
  </channel>
</rss>

