<?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: The CREATE TABLE statement generates a table only as output, not as a report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808935#M318973</link>
    <description>yes, proc sql .</description>
    <pubDate>Wed, 20 Apr 2022 22:05:25 GMT</pubDate>
    <dc:creator>tianerhu</dc:creator>
    <dc:date>2022-04-20T22:05:25Z</dc:date>
    <item>
      <title>The CREATE TABLE statement generates a table only as output, not as a report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808905#M318959</link>
      <description>&lt;P&gt;I have two question:&lt;/P&gt;
&lt;P&gt;1, what is the difference between output and report ?&lt;/P&gt;
&lt;P&gt;2, how do I check the result when I create a table ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2022 19:03:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808905#M318959</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2022-04-20T19:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: The CREATE TABLE statement generates a table only as output, not as a report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808906#M318960</link>
      <description>&lt;P&gt;Typically a Report is read by people. Data sets (I assume that is what you mean by output) are used as input&amp;nbsp; to other program elements such as analysis or another report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to check: depends on what you are checking. If specific calculations provide example data and see if the result matches expectations; if presence/absence of specific values the variety of tools: proc freq to display counts of values, subsetting the data set with where or if statements to see if any records meet/ fail to meet requirement of values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2022 19:16:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808906#M318960</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-04-20T19:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: The CREATE TABLE statement generates a table only as output, not as a report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808912#M318963</link>
      <description>&lt;P&gt;To not forget the most simple method of checking a result dataset: open it in a viewtable window and look at it.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2022 19:41:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808912#M318963</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-04-20T19:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: The CREATE TABLE statement generates a table only as output, not as a report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808917#M318968</link>
      <description>&lt;P&gt;are you talking about proc sql?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2022 20:30:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808917#M318968</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2022-04-20T20:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: The CREATE TABLE statement generates a table only as output, not as a report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808935#M318973</link>
      <description>yes, proc sql .</description>
      <pubDate>Wed, 20 Apr 2022 22:05:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808935#M318973</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2022-04-20T22:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: The CREATE TABLE statement generates a table only as output, not as a report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808944#M318980</link>
      <description>&lt;P&gt;If you want to create a report from PROC SQL just remove the CREATE TABLE part of your query:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql; * Table ;
  create table want as 
  select *
  from have;
quit;

proc sql; * Report ;
  select *
  from have;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 20 Apr 2022 22:57:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808944#M318980</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-04-20T22:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: The CREATE TABLE statement generates a table only as output, not as a report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808953#M318986</link>
      <description>Thank you .</description>
      <pubDate>Thu, 21 Apr 2022 00:14:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808953#M318986</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2022-04-21T00:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: The CREATE TABLE statement generates a table only as output, not as a report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808954#M318987</link>
      <description>Thanks a lot.</description>
      <pubDate>Thu, 21 Apr 2022 00:14:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808954#M318987</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2022-04-21T00:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: The CREATE TABLE statement generates a table only as output, not as a report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808955#M318988</link>
      <description>Thanks.</description>
      <pubDate>Thu, 21 Apr 2022 00:16:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/The-CREATE-TABLE-statement-generates-a-table-only-as-output-not/m-p/808955#M318988</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2022-04-21T00:16:16Z</dc:date>
    </item>
  </channel>
</rss>

