<?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: PROC SQL WARNING 1-322: Assuming the symbol OR was misspelled as order in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410471#M67269</link>
    <description>&lt;P&gt;My previous example didn't work well because apparently the views don't preserve the sort order if sorting is done by variables that are not in the SELECT statement. This works better (relying on a free sort provided by DISTINCT)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql outobs=100;
   create view males as
   select   distinct upper(name), name  
   from     sashelp.class  
   where    age&amp;gt;10 and Sex='M'  
   ;
   create view females as
   select   distinct upper(name), name  
   from     sashelp.class  
   where    age&amp;gt;10 and Sex='F'  
   ;
   select  name
   into   :var_list separated by ','
   from   (select name from males 
           union all corr
           select name from females )
   ;
   drop view males, females
;quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 03 Nov 2017 21:17:42 GMT</pubDate>
    <dc:creator>agoldma</dc:creator>
    <dc:date>2017-11-03T21:17:42Z</dc:date>
    <item>
      <title>PROC SQL WARNING 1-322: Assuming the symbol OR was misspelled as order</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410428#M67265</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This query works well&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;sql&lt;/STRONG&gt; outobs=&lt;STRONG&gt;100&lt;/STRONG&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; select &amp;nbsp;&amp;nbsp;distinct name&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; from &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;sashelp.class&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; where &amp;nbsp;&amp;nbsp;&amp;nbsp;age&amp;gt;&lt;STRONG&gt;10&lt;/STRONG&gt; and Sex='M'&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; order by name&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;;&lt;STRONG&gt;quit&lt;/STRONG&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This query produces a warning in SAS 9.4 (M3 and M4)&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;sql&lt;/STRONG&gt; outobs=&lt;STRONG&gt;100&lt;/STRONG&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; select name&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; from&amp;nbsp; (select &amp;nbsp;&amp;nbsp;distinct name&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;from &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;sashelp.class&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;where &amp;nbsp;&amp;nbsp;&amp;nbsp;age&amp;gt;&lt;STRONG&gt;10&lt;/STRONG&gt; and Sex='M'&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;order by 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;)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;;&lt;STRONG&gt;quit&lt;/STRONG&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I agree that this query is not very useful, but I want to do something similar but&amp;nbsp;a little more complicated, which requires a selection from a sub-query which has an ORDER BY clause, and the&amp;nbsp;&lt;SPAN&gt;ORDER BY clause gets misinterpreted in the same way as in the example above.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Is it possible to tell SAS not guess that OR was misspelled as order?&lt;/P&gt;
&lt;P&gt;This reminds me of Chris' blog:&amp;nbsp;&amp;nbsp;&lt;A href="https://blogs.sas.com/content/sasdummy/2009/10/20/do-me-a-favor-stop-doing-me-favors/" target="_blank"&gt;Do me a favor: stop doing me favors&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a system option to reduce or stop guessing?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 19:21:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410428#M67265</guid>
      <dc:creator>agoldma</dc:creator>
      <dc:date>2017-11-03T19:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SQL WARNING 1-322: Assuming the symbol OR was misspelled as order</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410435#M67266</link>
      <description>&lt;P&gt;I think SAS is not expecting/allowing the ORDER BY within the SELECT clause.&amp;nbsp; Since you want to order the results of the final query, it should go outside.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql outobs=100;
   select name
   from  &lt;STRONG&gt;(&lt;/STRONG&gt;select   distinct name 
          from     sashelp.class 
          where    age&amp;gt;10 and Sex='M' 
          &lt;STRONG&gt;)&lt;/STRONG&gt;
   order by name 
;quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Nov 2017 19:32:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410435#M67266</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-11-03T19:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SQL WARNING 1-322: Assuming the symbol OR was misspelled as order</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410454#M67268</link>
      <description>&lt;P&gt;This is the more complicated query that I really want to do:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql outobs=100;
   select name
   into  :var_list separated by ','
   from  (select   distinct name  
          from     sashelp.class  
          where    age&amp;gt;10 and Sex='M'  
          order by upper(name) 
         UNION ALL CORR
          select   distinct name  
          from     sashelp.class  
          where    age&amp;gt;10 and Sex='F'  
          order by upper(name)
          )
;quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like the sorting done prior to the union, and I want to ignore case when sorting&lt;/P&gt;
&lt;P&gt;This could be done in 3 steps, but I was hoping to do it in one&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql outobs=100;
   create view males as
   select   distinct name  
   from     sashelp.class  
   where    age&amp;gt;10 and Sex='M'  
   order by upper(name)
   ;
   create view females as
   select   distinct name  
   from     sashelp.class  
   where    age&amp;gt;10 and Sex='F'  
   order by upper(name)
   ;
   select  name
   into   :var_list separated by ','
   from   (select * from males 
           union all corr
           select * from females )
   ;
   drop view males, females
;quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 20:40:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410454#M67268</guid>
      <dc:creator>agoldma</dc:creator>
      <dc:date>2017-11-03T20:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SQL WARNING 1-322: Assuming the symbol OR was misspelled as order</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410471#M67269</link>
      <description>&lt;P&gt;My previous example didn't work well because apparently the views don't preserve the sort order if sorting is done by variables that are not in the SELECT statement. This works better (relying on a free sort provided by DISTINCT)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql outobs=100;
   create view males as
   select   distinct upper(name), name  
   from     sashelp.class  
   where    age&amp;gt;10 and Sex='M'  
   ;
   create view females as
   select   distinct upper(name), name  
   from     sashelp.class  
   where    age&amp;gt;10 and Sex='F'  
   ;
   select  name
   into   :var_list separated by ','
   from   (select name from males 
           union all corr
           select name from females )
   ;
   drop view males, females
;quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Nov 2017 21:17:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410471#M67269</guid>
      <dc:creator>agoldma</dc:creator>
      <dc:date>2017-11-03T21:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SQL WARNING 1-322: Assuming the symbol OR was misspelled as order</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410472#M67270</link>
      <description>&lt;P&gt;I'm not sure your desired outcome as you don't provide content.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not having that, I would question the need to create the two views prior to creating a union. Couldn't you just sort by Name, Sex? As it looks like you want a list of males then females?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 21:20:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410472#M67270</guid>
      <dc:creator>ClarkLawson</dc:creator>
      <dc:date>2017-11-03T21:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SQL WARNING 1-322: Assuming the symbol OR was misspelled as order</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410473#M67271</link>
      <description>&lt;P&gt;I think that sort operations within SQL are intentionally opaque.&amp;nbsp; PROC SQL -- or the database process for passthrough queries -- will decide how to sort based on what is needed.&amp;nbsp; Your final ORDER BY says how you want the results in sequence after the result set is determined.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But yes -- "free" sorting with DISTINCT -- that's a PROC SQL behavior you can leverage (but doesn't necessarily apply to database queries).&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 21:24:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410473#M67271</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-11-03T21:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SQL WARNING 1-322: Assuming the symbol OR was misspelled as order</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410478#M67272</link>
      <description>&lt;P&gt;How about:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc sql noprint;
   select name into : varlist separated by ','
   from sashelp.class
   where age&amp;gt;10
   order by sex descending,upper(name)
   ;
quit;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I assume this is actually a demonstration of a principle you are attempting to use but perhaps you are over complicating it.&lt;/P&gt;
&lt;P&gt;Of course if your actual data has duplicates of the "name" variable the select may want to be select distinct name&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am also a tad leery of macro variables with commas. It complicates things if you want to pass the variable as a parameter to another macro.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 21:40:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410478#M67272</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-11-03T21:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SQL WARNING 1-322: Assuming the symbol OR was misspelled as order</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410481#M67273</link>
      <description>&lt;P&gt;You cannot sort the inner queries.&amp;nbsp; The ORDER BY clause only applies to the overall result.&lt;/P&gt;
&lt;P&gt;If you want to sort by two variables the select two variables.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql ;
select 1 as group,name
from sashelp.class
where sex='M'

union

select 2 as group,name
from sashelp.class
where sex='F'

order by group, name 
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Nov 2017 21:50:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410481#M67273</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-11-03T21:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SQL WARNING 1-322: Assuming the symbol OR was misspelled as order</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410489#M67274</link>
      <description>&lt;P&gt;Clark and ballrdw, you're right that the "sashelp.class" is too simple of an example.&lt;/P&gt;
&lt;P&gt;In my data I have duplicate records and "name" is spelled in very-mixed case.&lt;/P&gt;
&lt;P&gt;I really want to take distinct and sort by upper(name)&lt;/P&gt;
&lt;P&gt;Thank you for suggesting to avoid the union... and to sort instead&lt;/P&gt;
&lt;P&gt;Instead of stacking males on top of females, I can sort... but only if it's a hidden sort inside DISTINCT&lt;/P&gt;
&lt;P&gt;I wish I could do this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql outobs=100;
   select name
   into  :var_list separated by ','
   from  (select   distinct Sex, upper(name), name  
          from     sashelp.class  
          where    age&amp;gt;10
          order by Sex desc, upper(name)
          )
;quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Unfortunately, SAS doesn't understand the ORDER BY clause.&lt;/P&gt;
&lt;P&gt;Fortunately, I can rely on the free sort provided by DISTINCT, and I can avoid the union, so I'll think I'll go with this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql outobs=100;
   select name
   into  :var_list separated by ','
   from  (select   distinct ifn(Sex='M',0,1), upper(name), name  
          from     sashelp.class  
          where    age&amp;gt;10
          )
;quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I accepted Tom's answer as the solution because it sounds like a theoretical thing that I need to remember for the future and because it answers my original question about why ORDER BY doesn't work.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 22:18:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410489#M67274</guid>
      <dc:creator>agoldma</dc:creator>
      <dc:date>2017-11-03T22:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SQL WARNING 1-322: Assuming the symbol OR was misspelled as order</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410491#M67275</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/49550"&gt;@agoldma&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Clark and ballrdw, you're right that the "sashelp.class" is too simple of an example.&lt;/P&gt;
&lt;P&gt;In my data I have duplicate records and "name" is spelled in very-mixed case.&lt;/P&gt;
&lt;P&gt;I really want to take distinct and sort by upper(name)&lt;/P&gt;
&lt;P&gt;Thank you for suggesting to avoid the union... and to sort instead&lt;/P&gt;
&lt;P&gt;Instead of stacking males on top of females, I can sort... but only if it's a hidden sort inside DISTINCT&lt;/P&gt;
&lt;P&gt;I wish I could do this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql outobs=100;
   select name
   into  :var_list separated by ','
   from  (select   distinct Sex, upper(name), name  
          from     sashelp.class  
          where    age&amp;gt;10
          order by Sex desc, upper(name)
          )
;quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Unfortunately, SAS doesn't understand the ORDER BY clause.&lt;/P&gt;
&lt;P&gt;Fortunately, I can rely on the free sort provided by DISTINCT, and I can avoid the union, so I'll think I'll go with this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql outobs=100;
   select name
   into  :var_list separated by ','
   from  (select   distinct ifn(Sex='M',0,1), upper(name), name  
          from     sashelp.class  
          where    age&amp;gt;10
          )
;quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I accepted Tom's answer as the solution because it sounds like a theoretical thing that I need to remember for the future and because it answers my original question about why ORDER BY doesn't work.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't get it. What is the difference between this working code&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;select name
  into  :var_list separated by ','
from  sashelp.class 
where age&amp;gt;10
order by Sex desc, upper(name)
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And your proposed solution with the attempt to embed and ORDER BY into the middle somewhere?&lt;/P&gt;
&lt;P&gt;If you want to suppress the warnings about order by variables not selected the select them.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;select sex,upper(name),name
  into  :dummy,:dummy,:var_list separated by ','
from  sashelp.class 
where age&amp;gt;10
order by Sex desc, upper(name)
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Nov 2017 22:29:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410491#M67275</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-11-03T22:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SQL WARNING 1-322: Assuming the symbol OR was misspelled as order</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410493#M67276</link>
      <description>&lt;P&gt;Tom, you're right&lt;/P&gt;
&lt;P&gt;This also works&lt;/P&gt;
&lt;P&gt;I just didn't think of assigning those other variables into a dummy macro variable&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;(I would also add the &amp;nbsp;&lt;FONT face="courier new,courier"&gt;%symdel dummy;&lt;/FONT&gt; &amp;nbsp;at the end)&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 22:49:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-SQL-WARNING-1-322-Assuming-the-symbol-OR-was-misspelled-as/m-p/410493#M67276</guid>
      <dc:creator>agoldma</dc:creator>
      <dc:date>2017-11-03T22:49:03Z</dc:date>
    </item>
  </channel>
</rss>

