andrey2 Posted April 30, 2007 Report Share Posted April 30, 2007 Есть запрос на FoxPro 2.6 данных из базы по условию даты, но нужно это сделать все через массив. Как правильно его переделать? mes=90 ** - воодимый перид месяца (код) select max(per) as dt, nai from s_norm.dbf where per<=90 into cursor q1 GROUP BY nai && отбор даты смены цены по каждому товару select t.per,t.nai,t.norm from s_norma t, q1 where t.per=q1.dt AND T.nai=Q1.nai into cursor q2 && отбор цены select q2 brow norm Массив создал следующим образом: publ array norma_arr(1) publ norma_len sele per, nai, norm from s_norma.dbf where type=1 order by per into array norma_arr norma_len=_TALLY Quote Link to comment Share on other sites More sharing options...
andrey2 Posted May 2, 2007 Author Report Share Posted May 2, 2007 Вопрос решен. Спасибо всем. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.