私はSQL Server 2012を使用していますが、次のようなことをしようとしています:
SELECT SUM(MILES) from tblName WHERE
mDate > = '03/01/2012' and
mDate <= '03/31/2012'
-- and...
/*
now I want to add here do until the SUM of Miles
is equal to or greater then '3250' and get the
results rows randomly
*/
つまり、指定された開始日と終了日を持つテーブルからランダムな行を選択し、マイルの合計が 3250 以上になったときに停止したいと考えています。