<?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: how to create SAS file after proc sql? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363384#M274873</link>
    <description>&lt;P&gt;My SAS version is 9.3, not 9.4&lt;/P&gt;</description>
    <pubDate>Thu, 01 Jun 2017 12:10:54 GMT</pubDate>
    <dc:creator>ybz12003</dc:creator>
    <dc:date>2017-06-01T12:10:54Z</dc:date>
    <item>
      <title>how to create SAS file after proc sql?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363284#M274870</link>
      <description>&lt;P&gt;Hello:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to generate&amp;nbsp;a SAS file after proc sql? &amp;nbsp;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;select score from test1&lt;BR /&gt;intersect all&lt;BR /&gt;select score from test2;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 01:48:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363284#M274870</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2017-06-01T01:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to create SAS file after proc sql?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363286#M274871</link>
      <description>&lt;P&gt;Precede the SELECT clause with a CREATE TABLE clause:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; create table mytable as&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;select score from test1&lt;/P&gt;
&lt;P&gt;&amp;nbsp; intersect all&lt;/P&gt;
&lt;P&gt;&amp;nbsp; select score from test2;&lt;/P&gt;
&lt;P&gt;quit;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 02:00:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363286#M274871</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-06-01T02:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to create SAS file after proc sql?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363300#M274872</link>
      <description>&lt;P&gt;The documentation is pretty good for SQL - see the section titled 'Creating Tables'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/sqlproc/69822/HTML/default/viewer.htm#titlepage.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/sqlproc/69822/HTML/default/viewer.htm#titlepage.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 03:29:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363300#M274872</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-01T03:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to create SAS file after proc sql?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363384#M274873</link>
      <description>&lt;P&gt;My SAS version is 9.3, not 9.4&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 12:10:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363384#M274873</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2017-06-01T12:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to create SAS file after proc sql?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363580#M274874</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/67134"&gt;@ybz12003&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;My SAS version is 9.3, not 9.4&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It won't hurt to look at basics of SQL documentation. The basic elements such as Create Table , Select, From, Group By and where clauses haven't changed drastically since SAS 6.8. There may be as few additional features here and there but just as the data step, except for adding new functions, changes slowly so does the base SQL definition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And if you hunt around you will find the version 9.3 documentation on the SAS support website as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would also ask why the online help was not installed with your installation. Does the F1 key bring up anything for SAS?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 19:52:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363580#M274874</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-06-01T19:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to create SAS file after proc sql?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363635#M274875</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/67134"&gt;@ybz12003&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;My SAS version is 9.3, not 9.4&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It really doesn't matter for this topic, the major difference is with FEDSQL and MEDIAN function, neither of which you appear to be using. And you can find the same section in the 9.3 documentation, if you choose to look.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 22:06:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-create-SAS-file-after-proc-sql/m-p/363635#M274875</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-01T22:06:10Z</dc:date>
    </item>
  </channel>
</rss>

