0
week_nbrとcust_idというテーブルがあるとします。Teradataのグループ内のデータのサンプル
毎週500人の顧客をサンプルしたいとします。
ダムの方法は、毎週のためにこれを行うことです。
select cust_id
from week_cust
sample randomized allocation 500
where week_nbr=1
スマートな方法は何ですか?つまり、次のコンセプトを実現する方法はありますか?
select week_nbr
,random sample of 500 cust_id in this week
from week_cust
これは、Teradataの12
ベスト、と事前に感謝です。