0
私はSASを初めて使いましたが、SQLコードを使用してproc sql
コードを書こうとすると、PARTITION by
はSASで使用できません。やるSQLからPROCへSQL-partition by代替(最小の場合)
表
Customer_id Item_type Order Size Date ….
1. A401 Fruit Small 3/14/2016 ….
2. A401 Fruit Big 5/22/2016 ….
3. A401 Vegetable Small 7/12/2016 ….
4. B509 Vegetable Small 3/25/2015 ….
5. B509 Vegetable Big 3/15/2014 ….
6. B509 Vegetable Small 3/1/2014 ….
説明
Customer_id Item_Type Count Reason
1.A401 Fruit 2 X-WRONG-because date corresponding big item is later than others in group
2.B509 Vegetable 2 RIGHT-Note that count is 2 only because one of the dates is earlier than the Big corresponding item(3/1/2014 is earlier than 3/15/2014)
SQL出力SQL方言で
Customer_id Item_Type Count
1.B509 Vegetable 2
select t.customer_id, t.item_type, count(*)
from (select t.*,
min(case when OrderSize = 'Big' then date end) over (partition by customer_id, item_type) as min_big
from t
) t
where date > min_big
group by t.customer_id, t.item_type;
はmain.date doesnotエラーが存在しました。 – viji
おっと!編集を参照してください。派生テーブルの 'SELECT'に* date *を追加してください。あなたのアスタリスクを置き換えると、私はその重要な人を含めることを忘れてしまいます。 – Parfait