<?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 you can convert this SQL to PROC SQL? in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338586#M22485</link>
    <description>&lt;P&gt;123 is exactly the same as 1234 in your sample data yet the output differs for them?&amp;nbsp;&lt;BR /&gt;What are we missing?&lt;/P&gt;</description>
    <pubDate>Mon, 06 Mar 2017 21:27:54 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-03-06T21:27:54Z</dc:date>
    <item>
      <title>How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338460#M22470</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SELECT CASE WHEN RCM_PAY_STT_DT = DATEFROMPARTS(YEAR(CURRENT_TIMESTAMP), MONTH(CURRENT_TIMESTAMP), 1)&lt;BR /&gt;THEN (7) - SUM(MAX_MONTHS) OVER (PARTITION BY HICNO) + MAX_MONTHS&lt;BR /&gt;ELSE MAX_MONTHS&lt;BR /&gt;END AS FORCASTED_MONTHS_MY&lt;/P&gt;&lt;P&gt;FROM MY_TABLE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Shailesh&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 15:11:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338460#M22470</guid>
      <dc:creator>Sp72</dc:creator>
      <dc:date>2017-03-06T15:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338466#M22471</link>
      <description>&lt;P&gt;The only problem statement is:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;OVER (PARTITION BY HICNO)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This isn't ANSI SQL, but a database specific. &amp;nbsp;I don't believe there is a direct way to translate this to ANSI SQL.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you post test data (a few rows) as a datastep:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;And what you want the result to look like, its probably simpler to use a datastep. &amp;nbsp;I would say, work out the sum() part in one datastep, then merge that back to the data and do your if (replacement for case when).&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 15:25:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338466#M22471</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-03-06T15:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338468#M22472</link>
      <description>&lt;P&gt;Since not everyone is going to immediately recognize the flavor of SQL posted then you shoud provide which instructions need implementation in SAS proc sql and what they do in the source code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also it may help to provide a small example data set and the desired result.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 15:27:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338468#M22472</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-03-06T15:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338490#M22473</link>
      <description>Thank you for quick response,&lt;BR /&gt;Sorry i can't load data, since its has some PHI, But in my query, I cross join with table 2 where I select MAX(RCM_PAY_STT_DT) and compare it that record is in current month or not, If its in current month I predict as 7 for my calculation, if the record is not in current month, then I put max_months. Like record one has max_month = 3 then I predict FORCASTED_MONTHS_MY = 7, record 2(a) and 2(b) has max_months = 2 and 1 then FORCASTED_MONTHS_MY = 2 and 5 since its total should be 7 (group by recordid).&lt;BR /&gt;&lt;BR /&gt;You understand what I mean.&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Mar 2017 16:41:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338490#M22473</guid>
      <dc:creator>Sp72</dc:creator>
      <dc:date>2017-03-06T16:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338491#M22474</link>
      <description>&lt;P&gt;Thank you for quick response,&lt;BR /&gt;Sorry i can't load data, since its has some PHI, But in my query, I cross join with table 2 where I select MAX(RCM_PAY_STT_DT) and compare it that record is in current month or not, If its in current month I predict as 7 for my calculation, if the record is not in current month, then I put max_months. Like record one has max_month = 3 then I predict FORCASTED_MONTHS_MY = 7, record 2(a) and 2(b) has max_months = 2 and 1 then FORCASTED_MONTHS_MY = 2 and 5 since its total should be 7 (group by recordid).&lt;/P&gt;&lt;P&gt;You understand what I mean.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 16:43:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338491#M22474</guid>
      <dc:creator>Sp72</dc:creator>
      <dc:date>2017-03-06T16:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338494#M22475</link>
      <description>&lt;P&gt;SELECT&amp;nbsp;&lt;BR /&gt;CASE WHEN RCM_PAY_STT_DT = DATEFROMPARTS(YEAR(CURRENT_TIMESTAMP), MONTH(CURRENT_TIMESTAMP), 1)&lt;BR /&gt;THEN (7) - SUM(MAX_MONTHS) OVER (PARTITION BY HICNO) + MAX_MONTHS&lt;BR /&gt;ELSE MAX_MONTHS&lt;BR /&gt;END AS FORCASTED_MONTHS_MY&lt;BR /&gt;FROM MY_TABLE&lt;BR /&gt;CROSS APPLY (&lt;BR /&gt;SELECT MAX(&lt;SPAN&gt;MY_Table2.&lt;/SPAN&gt;RCM_PAY_STT_DT) AS RCM_PAY_STT_DT&lt;BR /&gt;FROM MY_Table2&lt;BR /&gt;WHERE &lt;SPAN&gt;MY_Table2.&lt;/SPAN&gt;RCM_HICN_ID = &lt;SPAN&gt;MY_TABLE.&lt;/SPAN&gt;HICNO&lt;BR /&gt;AND &lt;SPAN&gt;MY_Table2.&lt;/SPAN&gt;RCM_CMS_CTC_ID = &lt;SPAN&gt;MY_TABLE.&lt;/SPAN&gt;PLAN_ID&lt;BR /&gt;AND &lt;SPAN&gt;MY_Table2.&lt;/SPAN&gt;RCM_PBP_ID = &lt;SPAN&gt;MY_TABLE.&lt;/SPAN&gt;PBP&lt;BR /&gt;AND &lt;SPAN&gt;MY_Table2.&lt;/SPAN&gt;RCM_ST_CTY_CD = &lt;SPAN&gt;MY_TABLE.&lt;/SPAN&gt;SCC&lt;BR /&gt;AND &lt;SPAN&gt;MY_Table2.&lt;/SPAN&gt;RCM_RAF_TP_CD = &lt;SPAN&gt;MY_TABLE.&lt;/SPAN&gt;RAFT_PART_C&lt;BR /&gt;) B&lt;BR /&gt;ORDER BY &lt;SPAN&gt;MY_TABLE.&lt;/SPAN&gt;HICNO&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 16:48:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338494#M22475</guid>
      <dc:creator>Sp72</dc:creator>
      <dc:date>2017-03-06T16:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338542#M22479</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/109728"&gt;@Sp72&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Thank you for quick response,&lt;BR /&gt;Sorry i can't load data, since its has some PHI&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make up data that reflects your situation. Exact data is not required.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Include both what you have and what you need.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 19:17:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338542#M22479</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-03-06T19:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338566#M22480</link>
      <description>&lt;P&gt;TABLE 1 (&lt;/P&gt;&lt;P&gt;HICNO PBP &amp;nbsp;SCC &amp;nbsp;MAX_MONTHS FORCASTED_MONTHS_MY&lt;/P&gt;&lt;P&gt;123 &amp;nbsp; &amp;nbsp; &amp;nbsp; 001 &amp;nbsp; A12 &amp;nbsp;3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 7&lt;/P&gt;&lt;P&gt;1234 &amp;nbsp; &amp;nbsp; 001 &amp;nbsp; A12 &amp;nbsp;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;&lt;P&gt;1234 &amp;nbsp; &amp;nbsp; 002 &amp;nbsp; A12 &amp;nbsp;2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 6&lt;/P&gt;&lt;P&gt;321 &amp;nbsp; &amp;nbsp; &amp;nbsp; 003 &amp;nbsp; A13 &amp;nbsp;2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;&lt;P&gt;321 &amp;nbsp; &amp;nbsp; &amp;nbsp; 003 &amp;nbsp; A14 &amp;nbsp;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&lt;/P&gt;&lt;P&gt;231 &amp;nbsp; &amp;nbsp; &amp;nbsp; 005 &amp;nbsp; A16 &amp;nbsp;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp;&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TABLE 2 (updated monthly and Forcasted months determined by monthly)&lt;/P&gt;&lt;P&gt;HICNO &amp;nbsp; RCM_PAY_STT_DT&lt;/P&gt;&lt;P&gt;123 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/01/2017&lt;/P&gt;&lt;P&gt;123 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/02/2017&lt;/P&gt;&lt;P&gt;123 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/03/2017&lt;/P&gt;&lt;P&gt;1234 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/01/2017&lt;/P&gt;&lt;P&gt;1234 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/02/2017&lt;/P&gt;&lt;P&gt;1234 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/03/2017&lt;/P&gt;&lt;P&gt;321 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/01/2017&lt;/P&gt;&lt;P&gt;321 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/02/2017&lt;/P&gt;&lt;P&gt;321 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/03/2017&lt;/P&gt;&lt;P&gt;231 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/01/2017&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 20:39:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338566#M22480</guid>
      <dc:creator>Sp72</dc:creator>
      <dc:date>2017-03-06T20:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338579#M22481</link>
      <description>&lt;P&gt;And the final result for that example data would look like ???&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 21:06:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338579#M22481</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-03-06T21:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338582#M22483</link>
      <description>&lt;P&gt;Table 1, with derived column "Forecasted_Months_my"&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 21:20:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338582#M22483</guid>
      <dc:creator>Sp72</dc:creator>
      <dc:date>2017-03-06T21:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338585#M22484</link>
      <description>&lt;P&gt;TABLE 1&amp;nbsp;&lt;/P&gt;&lt;P&gt;HICNO PBP &amp;nbsp;SCC &amp;nbsp;MAX_MONTHS &lt;STRONG&gt;FORCASTED_MONTHS_MY&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;123 &amp;nbsp; &amp;nbsp; &amp;nbsp; 001 &amp;nbsp; A12 &amp;nbsp;3 &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;STRONG&gt;7&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1234 &amp;nbsp; &amp;nbsp; 001 &amp;nbsp; A12 &amp;nbsp;1 &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;STRONG&gt;1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1234 &amp;nbsp; &amp;nbsp; 002 &amp;nbsp; A12 &amp;nbsp;2 &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;STRONG&gt;6&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;321 &amp;nbsp; &amp;nbsp; &amp;nbsp; 003 &amp;nbsp; A13 &amp;nbsp;2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;STRONG&gt;&amp;nbsp;2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;321 &amp;nbsp; &amp;nbsp; &amp;nbsp; 003 &amp;nbsp; A14 &amp;nbsp;1 &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;STRONG&gt;5&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;231 &amp;nbsp; &amp;nbsp; &amp;nbsp; 005 &amp;nbsp; A16 &amp;nbsp;1 &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;STRONG&gt;1&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 21:24:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338585#M22484</guid>
      <dc:creator>Sp72</dc:creator>
      <dc:date>2017-03-06T21:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338586#M22485</link>
      <description>&lt;P&gt;123 is exactly the same as 1234 in your sample data yet the output differs for them?&amp;nbsp;&lt;BR /&gt;What are we missing?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 21:27:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338586#M22485</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-03-06T21:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: How you can convert this SQL to PROC SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338773#M22507</link>
      <description>PBPis different for each ids, they move between PBPs and SCCs.123 stayed all 3 months with same PBP/SCC while 1234 move between PBP/SCC.</description>
      <pubDate>Tue, 07 Mar 2017 12:10:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-you-can-convert-this-SQL-to-PROC-SQL/m-p/338773#M22507</guid>
      <dc:creator>Sp72</dc:creator>
      <dc:date>2017-03-07T12:10:26Z</dc:date>
    </item>
  </channel>
</rss>

