<?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 how to display in the output window? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-display-in-the-output-window/m-p/821957#M324525</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname certadv 'C:\SAS data and program\data\data set used in OG of SAS adv\certadv';
proc sql;
  create table work.lab1 as
    select *
	from certadv.lab3
	where name in (select name from certadv.lab12);
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;above is my program. How to display the result of my program in the output window?&lt;/P&gt;</description>
    <pubDate>Thu, 07 Jul 2022 01:24:43 GMT</pubDate>
    <dc:creator>tianerhu</dc:creator>
    <dc:date>2022-07-07T01:24:43Z</dc:date>
    <item>
      <title>how to display in the output window?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-display-in-the-output-window/m-p/821957#M324525</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname certadv 'C:\SAS data and program\data\data set used in OG of SAS adv\certadv';
proc sql;
  create table work.lab1 as
    select *
	from certadv.lab3
	where name in (select name from certadv.lab12);
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;above is my program. How to display the result of my program in the output window?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 01:24:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-display-in-the-output-window/m-p/821957#M324525</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2022-07-07T01:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to display in the output window?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-display-in-the-output-window/m-p/821958#M324526</link>
      <description>&lt;P&gt;If you just want to see the data rows being selected in the Output window just remove the CREATE TABLE part of your query:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname certadv 'C:\SAS data and program\data\data set used in OG of SAS adv\certadv';
proc sql;
  /* create table work.lab1 as */
    select *
	from certadv.lab3
	where name in (select name from certadv.lab12);
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Jul 2022 02:14:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-display-in-the-output-window/m-p/821958#M324526</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-07-07T02:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to display in the output window?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-display-in-the-output-window/m-p/821962#M324528</link>
      <description>&lt;P&gt;Your SQL code is creating a dataset.&lt;/P&gt;
&lt;P&gt;To display a dataset use PROC PRINT.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=lab1;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Jul 2022 03:00:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-display-in-the-output-window/m-p/821962#M324528</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-07-07T03:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to display in the output window?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-display-in-the-output-window/m-p/821965#M324529</link>
      <description>Thank you for your help.</description>
      <pubDate>Thu, 07 Jul 2022 03:05:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-display-in-the-output-window/m-p/821965#M324529</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2022-07-07T03:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to display in the output window?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-display-in-the-output-window/m-p/821970#M324530</link>
      <description>&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 03:06:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-display-in-the-output-window/m-p/821970#M324530</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2022-07-07T03:06:07Z</dc:date>
    </item>
  </channel>
</rss>

