Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「Do Loop」メソッドを使用して、データベース ファイルから平均成績を算出しようとしています。私はそれを開始する方法さえ完全に無知です。誰かが何かヒントを持っているか、私を助けることができますか? よろしく、ジャック。
vbでループするのではなく、SQLで平均を計算します。
例えば、
select StudentID, avg(Grade) as AverageGrade from StudentGrade group by StudentID