<?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: sql vs proc freq in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/sql-vs-proc-freq/m-p/873577#M345170</link>
    <description>&lt;P&gt;Also your subject indicates that you're actually after for something different here the docu link that should answer your question:&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/sqlproc/n0suerxfcdj8lnn1oudqyqz61k2b.htm" target="_self"&gt;Creating and Updating Tables and Views&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Going forward please spend a bit more time to explain what you've got and what you need. Putting in the time to provide all information from start is highly appreciated in this forum.&lt;/P&gt;</description>
    <pubDate>Wed, 03 May 2023 09:53:38 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2023-05-03T09:53:38Z</dc:date>
    <item>
      <title>sql vs proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sql-vs-proc-freq/m-p/873560#M345168</link>
      <description>&lt;P&gt;hello, could you please help me to create tables with SQL?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 08:18:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sql-vs-proc-freq/m-p/873560#M345168</guid>
      <dc:creator>kindbe17</dc:creator>
      <dc:date>2023-05-03T08:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: sql vs proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sql-vs-proc-freq/m-p/873577#M345170</link>
      <description>&lt;P&gt;Also your subject indicates that you're actually after for something different here the docu link that should answer your question:&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/sqlproc/n0suerxfcdj8lnn1oudqyqz61k2b.htm" target="_self"&gt;Creating and Updating Tables and Views&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Going forward please spend a bit more time to explain what you've got and what you need. Putting in the time to provide all information from start is highly appreciated in this forum.&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 09:53:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sql-vs-proc-freq/m-p/873577#M345170</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2023-05-03T09:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: sql vs proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sql-vs-proc-freq/m-p/873578#M345171</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/441989"&gt;@kindbe17&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;hello, could you please help me to create tables with SQL?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Vague and un-detailed questions like this get vague and un-detailed answers. Specific and detailed questions get specific and detailed answers. Please be specific and detailed about what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, what does your question have to do with your title? Seems to me they are talking about different things.&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 09:53:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sql-vs-proc-freq/m-p/873578#M345171</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-05-03T09:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: sql vs proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sql-vs-proc-freq/m-p/873583#M345175</link>
      <description>&lt;P&gt;I got it, thank you for explaining, i will be more careful&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;need to calculate how many car types are in TYPE variable&lt;/P&gt;&lt;P&gt;i tried to do this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;create table cars_2 as&lt;BR /&gt;select Make, Type&lt;BR /&gt;from sashelp.cars&lt;BR /&gt;Group by make&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 10:32:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sql-vs-proc-freq/m-p/873583#M345175</guid>
      <dc:creator>kindbe17</dc:creator>
      <dc:date>2023-05-03T10:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: sql vs proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sql-vs-proc-freq/m-p/873584#M345176</link>
      <description>&lt;P&gt;Here you go.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  create table cars_2 as
    select Make, count(distinct Type) as n_types
      from sashelp.cars
        Group by make
  ;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 May 2023 10:39:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sql-vs-proc-freq/m-p/873584#M345176</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2023-05-03T10:39:49Z</dc:date>
    </item>
  </channel>
</rss>

